Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Trying to send a form to multiple people. 1

Status
Not open for further replies.

vemate

Programmer
Aug 23, 2002
61
US
I am sending a form to multiple people an only the first and second person receives the message. Am I miss some kind seperator? Thanks for your help.

<form method="post" enctype="text/plain" action="mailto:test1@bellsouth.net?cc=test2@bellsouth.net?cc=test3@bellsouth.net" onSubmit=""></a>
 
You should use the syntax:

Code:
<form method="post" enctype="text/plain" action="mailto:person1@domain.com?cc=person2@domain.com,person3@domain.com"></form>

Incidentally, you have an erroneous closing anchor tag after your form.

Hope this helps,
Dan

[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
Thanks BillyRayPreachersSon I see my problem now.
I appreciate your help.
 
Dan;

You can use a comma to separate e-mail addresses in a form's action too? I always thought semi-colons were required....guess I learn something new everyday.



I hope this helps;
Rob Hercules
 
I know what they say about assuming... but yes - I did assume that commas would be more universally accepted than semicolons - although I really can't tell you why - just one of those decisions ;-)

Dan

[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top