Forms To Email:
Description:
To have the information of a form emailed to a specific email address, all you have to do is set three hidden fields on your form and have the action of the form point to a file of type .htm with a special line of code at the top of the page. It's really as simple as that.
The Required Code:
Required Code For Page With Form - <input type="hidden" name="OWIS_SUBJECT" value="Subject Of Email.">
- <input type="hidden" name="OWIS_SENDTO" value="webmaster@your-site.com">
- <input type="hidden" name="OWIS_SENTFROM" value="from@your-site.com">
Required Code For ACTION of form (place at top of page)- <cfinclude template="/common/mailprocessor.cfm">
Close