Not sure if this is the right area to ask this question?
goneriding
12:24 am on Jan 7, 2004 (gmt 0)
I am on the design side working mostly in Dreamweaver, SEO, etc. and need to program a submit button so that it sends an email to the recipient. I have done this before in Aestiva HTML/OS quite some time ago.
Thanks for your help.
robert adams
1:07 am on Jan 7, 2004 (gmt 0)
A little more info please, is this a form that they are filling out and you want an email to go to them when they click submit? what do you want in the email, the contents of the form?
luck, robert
runre
10:38 am on Jan 7, 2004 (gmt 0)
Right, Robert. More info. is needed. Would a (very) simple <a href="mailto:?"> tag do enough for you?
goneriding
4:09 pm on Jan 7, 2004 (gmt 0)
Thanks guys. That is correct, it is a simple contact form including name, email, phone number and comments. A more detailed form will come in the near future. Also, the email will include the contents from this form.
Thanks again.
robert adams
5:50 pm on Jan 7, 2004 (gmt 0)
Try this with your form:
<form ACTION="path to your form mail program" METHOD="post"> <input type="hidden"name="recipient"value="you@yourdomain.com">
that should send you or whoever you put in the value= spot an email with the form contents. You will probably want some kind of form to email script so that the info will be readable.
luck, robert
runre
12:31 pm on Jan 10, 2004 (gmt 0)
Right, Robert. Goneriding will be set with that. I always prefer to create the form myself, capture the data (error check/clean up), and send it on its merry way!