The MailTo (mailto:) command can do more than enter a single e-mail address in the "Send To" field while activating your e-mail program. It can also:
Feature:
Address message to multiple recipients - , (comma separating e-mail addresses)
Add entry in the "Subject" field - subject=Subject Field Text
Add entry in the "Copy To" or "CC" field - cc=name@domain.com
Add entry in the "Blind Copy To" or "BCC" field - bcc=name@domain.com
Add entry in the "Body" field - body=Your message here
Within the body use "%0A" for a new line and "%0A%0A" for 2 lines.
Notes:
" " - quotes are necessary if any spaces are used
mailto parameter should be preceded by "?" for the 1st or only parameter and "&" for 2nd and subsequent parameter.
Exaples:
Simple MailTo
<a href="mailto:name@domain.com">
MailTo with Multiple Recipients
<a href="mailto:name@domain.com,name2@domain.com">
MailTo with Subject
<a href="mailto:name@domain.com?subject=Comments from MailTo Syntax Page">
MailTo with a Copy
<a href="mailto:name@domain.com?cc=name2@domain.com">
MailTo with a Blind Copy
<a href="mailto:name@domain.com?bcc=name2@domain.com">
MailTo with message already started in Body
<a href="mailto:name@domain.com?body=I am having trouble finding information on ">
MailTo with multiline message in Body
<a href="mailto:name@domain.com?body=The message's first line.%0A%0aSecond line.%0A%0AThird line.">
MailTo with Subject, a Recipient, a Copy and a Blind Copy
<a href="mailto:name@domain.com?subject=MailTo Comments&cc=name2@domain.com&bcc=name3@domain.com">
Recent Comments