Html 具有多个抄送地址的mailto

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/26509787/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-29 02:55:32  来源:igfitidea点击:

mailto with multiple cc addresses

html

提问by pollux1er

I would like to know how to include multiple email addresses in mailto link. I am trying this :

我想知道如何在 mailto 链接中包含多个电子邮件地址。我正在尝试这个:

<a href="mailto:[email protected]?subject=[Help]%20Base Leisure&[email protected],[email protected]">Contact Email</a>

But it is not working. Any idea of how to do it ?

但它不起作用。知道怎么做吗?

回答by FJT

You need a semi-colon as the separator.

您需要一个分号作为分隔符。

    <a href="mailto:[email protected]?subject=[Help]%20Base Leisure&[email protected];[email protected]">Contact Email</a>

回答by praveen kasineni

    <a href="mailto:[email protected]?subject=[Help]%20Base Leisure&[email protected];[email protected]">Contact Email</a>