Multiple email addresses

D

Don Rountree

Help!

I am trying to create a (I guess it is a link) link, that
when clicked on will create an email with multiple send to
emails filled in. I do not know the structure to do this
and am looking for some help. I'd appreciate any info.
Below is what I tried.

<li><a href= mailto:[email protected];
mailto:[email protected]>Email link!!!</a>

The only email address that shows up is the first one. I
used [email protected] as my email addresses.

Don Rountree
 
M

Mark Fitzpatrick

Don't put the mailto twice, just list the email addresses like you would if
you were sending a normal email to multiple recpipeints.

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

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage
 
Top