Html 如何仅为 bcc 设置 mailto

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/13384808/
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 03:53:14  来源:igfitidea点击:

How do I set up mailto for bcc only

htmlemailmailto

提问by MrM

I have a mailto link that I would like to populate the bcc only. Is that possible?

我有一个mailto 链接,我只想填充密件抄送。那可能吗?

回答by Christian Lundahl

mailto:?bcc=mailaddresswould do it!

mailto:?bcc=mailaddress会做的!

回答by gSaenz

Some examples, with actual HTML Code included, follow:

一些包含实际 HTML 代码的示例如下:

Simple MailTo

简单的MailTo

<a href="mailto:[email protected]">

<a href="mailto:[email protected]">

MailTo with Multiple Recipients

具有多个收件人的 MailTo

<a href="mailto:[email protected],[email protected]">

<a href="mailto:[email protected],[email protected]">

MailTo with Subject

带主题的 MailTo

<a href="mailto:[email protected]?subject=Comments from MailTo Syntax Page">

<a href="mailto:[email protected]?subject=Comments from MailTo Syntax Page">

MailTo with a Copy

MailTo 带副本

<a href="mailto:[email protected][email protected]">

<a href="mailto:[email protected][email protected]">

MailTo with a Blind Copy

MailTo 与盲文

<a href="mailto:[email protected][email protected]">

<a href="mailto:[email protected][email protected]">

MailTo with message already started in Body

带有消息的 MailTo 已在正文中启动

<a href="mailto:[email protected]?body=I am having trouble finding information on ">

<a href="mailto:[email protected]?body=I am having trouble finding information on ">

MailTo with multiline message in Body

正文中带有多行消息的 MailTo

<a href="mailto:[email protected]?body=The message's first paragraph.%0A%0aSecond paragraph.%0A%0AThird Paragraph.">

<a href="mailto:[email protected]?body=The message's first paragraph.%0A%0aSecond paragraph.%0A%0AThird Paragraph.">

source

来源