Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I set up mailto for bcc only

Tags:

html

email

mailto

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

like image 843
MrM Avatar asked Nov 14 '12 18:11

MrM


People also ask

How do I create a mailto link with multiple recipients?

Specify multiple recipients in the To field, separating addresses with a comma (,) or a semicolon (;). For example: mailto:[email protected],[email protected].


2 Answers

mailto:?bcc=mailaddress would do it!

like image 59
Christian Lundahl Avatar answered Sep 22 '22 08:09

Christian Lundahl


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

like image 21
gSaenz Avatar answered Sep 24 '22 08:09

gSaenz