How do I set up mailto for bcc only

牧云@^-^@ 提交于 2019-12-03 10:36:12

问题


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


回答1:


mailto:?bcc=mailaddress would do it!




回答2:


Some examples, with actual HTML Code included, follow:

Simple MailTo

<a href="mailto:astark1@unl.edu">

MailTo with Multiple Recipients

<a href="mailto:astark1@unl.edu,ASTARK1@UNL.EDU">

MailTo with Subject

<a href="mailto:astark1@unl.edu?subject=Comments from MailTo Syntax Page">

MailTo with a Copy

<a href="mailto:astark1@unl.edu?cc=ASTARK1@UNL.EDU">

MailTo with a Blind Copy

<a href="mailto:astark1@unl.edu?bcc=ASTARK1@UNL.EDU">

MailTo with message already started in Body

<a href="mailto:astark1@unl.edu?body=I am having trouble finding information on ">

MailTo with multiline message in Body

<a href="mailto:astark1@unl.edu?body=The message's first paragraph.%0A%0aSecond paragraph.%0A%0AThird Paragraph.">

source



来源:https://stackoverflow.com/questions/13384808/how-do-i-set-up-mailto-for-bcc-only

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!