Click to See Complete Forum and Search --> : Form submission using default email software.
joegui
02-08-2003, 01:56 AM
Hi,
ANyone knows the javascript for the posting of forms so that the contents [e.g. Name: Happy Age:23 etc] will be automatically included into the email. Please Help !!!!!
vickers_bits
02-08-2003, 02:56 AM
sending email on the client usually relies on the mailto method.
you can have default values included eg:
<a href="mailto:me@mydomain.com?subject=default subject&body=default message">Email Me</a>
but this method only shows the users default mailing system. they are required to send the email and they can also change any default values that you set.
however if you can use server-side access to ASP, PHP, Perl etc. then you can send emails containing whatever you want. check with your host to see what you can use. there are heaps of free form mail scripts around.