How do I set up mailto for bcc only

后端 未结 2 1714
不知归路
不知归路 2021-02-05 01:08

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

相关标签:
2条回答
  • 2021-02-05 01:24

    mailto:?bcc=mailaddress would do it!

    0 讨论(0)
  • 2021-02-05 01:26

    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

    0 讨论(0)
提交回复
热议问题