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!

Emailing Forms 2

Status
Not open for further replies.

wlfpackr

IS-IT--Management
May 3, 2003
161
US
My HTML has gotten a bit rusty so I'm not sure if this can be done. I need to email a form to multiple people when it is submitted. Unfortunately, I cannot create an alias email account or use email forwarding which would be ideal. Is there a way to add multiple email address in the Action portion of the Form tag? There would only be at most 2 people now and maybe another 2 people in the future.

=================
There are 10 kinds of people in this world, those that understand binary and those that do not.
 
try adding email address with the ; between them in the action form tag
 
How are you sending these emails? Are you using mailto: protocol or are you using some kind of server side script? If latter, adding additional emails to the list should be simple but would fall out of the scope of this forum.
 
This quick-and-dirty code will create a form that will allow a user to enter the suject and body of an e-mail that will be sent to [tt][ignore]account1@provider1.com[/ignore][/tt], [tt][ignore]account2@provider2.com[/ignore][/tt], and [tt][ignore]account3@provider3.com[/ignore][/tt]:

Code:
[tt][ignore]<form action="mailto:account1@provider1.com; account2@provider2.com; account3@provider3.com" method=GET>Enter e-mail subject here:<input type=text size=40 name="subject"></input><br><br>
Enter text of message here:<br>
<textarea cols=40 rows=20 name="body"></textarea><br>
<input type=submit value="Send E-mail"><input type=reset value="Clear Message">
</form>
[/ignore][/tt]

Did this answer your question/solve your problem?


I hope this helps,
Rob Hercules
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top