[html] send mail to multiple receiver with HTML mailto

Possible Duplicate:
Emailing to multiple recipients with html Mailto: not working

I want to send with 1 HTML link a mail to multiple (100) recievers...

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

This link doesn't work. It do nothing when i press the link.

This question is related to html

The answer is


"There are no safe means of assigning multiple recipients to a single mailto: link via HTML. There are safe, non-HTML, ways of assigning multiple recipients from a mailto: link."

http://www.sightspecific.com/~mosh/www_faq/multrec.html

For a quick fix to your problem, change your ; to a comma , and eliminate the spaces between email addresses

<a href='mailto:[email protected],[email protected]'>Email Us</a>