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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sending multiple emails 2

Status
Not open for further replies.

vemate

Programmer
Aug 23, 2002
61
US
<form method="post" enctype="text/plain"

action="mailto:michael.dennis@forestproductsaccounting.com?
cc=rob.dial@forestproductsaccounting.com?
cc=vernon.biglane@forestproductsaccounting.com?
subject=Notify Forest Products Accounting" onSubmit=""></a>

what is wrong with this code? I am sending a form.
 
This works for a normal anchor link:
Code:
<a href="mailto:jeff@example.com?subject=Test&cc=dan@example.com;bob@example.com">Test</a>

... and should be the same for forms.

Cheers,
Jeff

[tt]Jeff's Blog [!]@[/!] CodeRambler
[/tt]

Make sure your web page and css validates properly against the doctype you have chosen - before you attempt to debug a problem!

FAQ216-6094
 
You're opening a form element and closing an anchor element. That could be one issue.

You declare empty action for the onsubmit event handler. That could be a problem too.

Other than that, how are you submitting the form anyway? I can see no submit button or anything. That could always be the issue as well.

___________________________________________________________
[small]Do something about world cancer today: Comprehensive cancer control information at PACT[/small]
 
you also have multiple question marks where there should be amperstands:
Code:
mailto:michael.dennis@forestproductsaccounting.com?
cc=rob.dial@forestproductsaccounting.com&
cc=vernon.biglane@forestproductsaccounting.com&subject=Hello
 
Thanks very much I could not see the forest for the trees I cannot beleive I did not see the "?" instead of "&" my code works now .
You all were a great help a million.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top