PDA

View Full Version : adding "cc's" to a "mailto:"


bgoverman
11-12-1999, 05:11 PM
I have placed an email address on my webpage and have used the "mailto:" link. I need to know how I can also have "cc's" sent to tw or three other persons.

Deb
11-12-1999, 06:40 PM
<a href=&quot;mailto:someone@someplace.com,anotherplace@elsewhere.com&quot;>More than one recipient</a>
<a href=&quot;mailto:someone@someplace.com?subject=Some Subject Here&quot;>Adding a Subject:</a>
<a href=&quot;mailto:someone@someplace.com?cc=anotherplace@elsewhere.com&quot;>Using the cc: field</a>
<a href=&quot;mailto:someone@someplace.com?bcc=anotherplace@elsewhere.com &quot;>Using the bcc: field</a>
<a href=&quot;mailto:someone@someplace.com?subject=Some Subject Here&amp;cc=anotherplace@elsewhere.com&amp;bcc=me@myplace.com&quot;>Using all the fields</a>


The above shows various options with the mailto: tag, including CC, BCC, and Subject...[nbsp][nbsp]

Hope this helps...
Deb
[This message has been edited by Deb (edited 11-12-99)]