Possible Duplicate:
Need to Send Email from HTML pages
Is there a way to use a form to send an email with no database? Is there an html element that can do this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could use an email link:
Edit: If you really want to use a form, you could take advantage of the
mailtoparameters such as subject, body, cc, and bcc to customize your email. Here is an example:Note that this would still use the user’s default email client and will not send the email on its own. However, it allows you to change the subject and content of the email from your form and pass it to the email client.