View Full Version : Is there a HTML code I can use to show one email address and send to 2?


Wayneos
30-11-2007, 15:32
As the title says:

Can I use an mailto code to send one email to 2 address's...I.E: <a href="mailto: name@company.com, anothername@company.com">email us</a>

and can this be used in the forum...?

Thanks

sallonoroff
30-11-2007, 18:52
The best thing to do would be to setup an email address that's sole purpose is for forwarding mail... to one or more other addresses.


.

Nostatic
30-11-2007, 21:25
Hi,

Found this at http://www.outfront.net/tutorials_02/adv_tech/mailto.htm

2. Send to Multiple Recipients

Mail can be sent to additional recipients either as carbon copies (cc) or blind carbon copies (bcc).

This is done in a similar way, by placing '?cc=someoneelse@theirsite.com' after the initial address.

So the link looks like this:

<a href="mailto:someone@yoursite.com?cc=someoneelse@theirsi te.com">Email Us</a>

cc can simply be replaced by bcc if you wish to send blind carbon copies.

This can be very useful if you have links on pages with different subjects. You might have the email on each page go to the appropriate person in a company but with a copy of all mails sent to a central address also.

Was this what you're looking for?