Tango Hosting Support *** Tango Hosting offers the following support file as a courtesy.
If you need further assistance with configuration please contact support@tangohosting.com
for a price quote. ***
You need only 2 files, and a place to redirect the user when they've submitted the form. 1. The first file contains your form somewhere in your page (e.g. create a file and name it form.htm): <!-- Cut cobe below this line --> <form action="mail.cfm" method="post" name="form1"> <!-- Cut code above this line --> The 2nd file is the actual CFM file that mails it, "mail.cfm"
in this example, containing the following code <!-- Cut code below this line --> <cfmail #form.comments# </cfmail> <!-- Cut code above this line --> The cflocation url in the last line is where your user is redirected after the mail.cfm file is executed. The redirect location can be anything. For this example we set the redrect to a file (page) called thankyou.htm. |