How do I set up mailto for bcc only
Asked Answered
D

2

46

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

Damiondamita answered 14/11, 2012 at 18:17 Comment(1)
Syntax of a 'mailto' URI (and ABNF)Pewter
C
99

mailto:?bcc=mailaddress would do it!

Circumrotate answered 14/11, 2012 at 18:20 Comment(1)
While the other post has some good info, this is what I was looking for. Thanks!Damiondamita
L
31

Some examples, with actual HTML Code included, follow:

Simple MailTo

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

MailTo with Multiple Recipients

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

MailTo with Subject

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

MailTo with a Copy

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

MailTo with a Blind Copy

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

MailTo with message already started in Body

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

MailTo with multiline message in Body

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

source

Lazybones answered 14/11, 2012 at 18:22 Comment(7)
Nice copy/paste. Did you even read the question? This is exactly what MrM does NOT want.Circumrotate
@Perplexor Yes, did you read my answer? see [email protected]"> which is the same as provided in the other answer. And I provided my source.Lazybones
I sure did. The question was if it's possible to create a mailto-link with bcc-address(es) and WITHOUT a "normal" recipient address. None of your examples did that.Circumrotate
@Perplexor Dont really see anything wrong with going above and beyond, thank you for your feedback.Lazybones
Outlook needs a semicolon instead of commas to separate mail addresses.Hybrid
source is broken :(Isolationism
@Isolationism you can easily find that example on other pages... imho people should just use the wayback machine for more permanent links, e.g. web.archive.org/web/20170217092344/https://support.blue.net.au/…Verminous

© 2022 - 2024 — McMap. All rights reserved.