http://scripts.inexistent.org/
Download this script and unzip to a folder or desktop.

Create a page and name it "aMAILzing". Change the file extension to .php in the page properties dialog.

Open the aMAILzing file with notepad so you can read and edit. Edit as instructed, copy and paste the code in the aMAILzing page's HTML at "Start Of Page". Publish page as .php extension. You should check the "Don't Synchronize this Page in Navigation Objects" box.

Create a contact page. Put a form area on it with an "Advanced Button". In the buttons properties, change the type to "Submit". Build the rest of your form and be sure all your items remain within the form area edges. On your form area properties, set the "Action" to aMAILzing.php, set the "Method" to post and "Encoding Type" to multipart/form-data.
TIPS
Change this line to your e-mail - $myemail = "cineee@gmail.com";

If you want a customized Thank You page just add a page, build it as you want it to display and name it thank_you with a .html extension. Find this line ( towards bottom of script )
header("Location: $ref${sep}message=$thankyou"); and then change the blue text to
Location: thank_you.html.

There are several other things that can be customized if you read the entire script.

If you want to have 2 e-mail fields on your form page for verication that it was entered correctly just add the 2 editboxes to you form. Name 1st one as
emailREQUIRED and 2nd one as email2REQUIRED.
Then insert the script below into the form page HTML - "Between Head Tag"
------------------------------------------------------------------------------------------------------------------------------------------------
<script type="text/javascript">
function compareEmails(myForm) {
  if (myForm.
emailREQUIRED.value != myForm.email2REQUIRED.value) {
    alert("Your E-Mail Addresses Don't Match. Please Double Check Your Entry.");
    return false;
  }
  return true;
}
</script>

------------------------------------------------------------------------------------------------------------------------------------------------


Then insert the code below into the "Submit" button HTML - "Inside Tag"
-------------------------------------------------------------------------

onclick="return compareEmails(this.form)"

-------------------------------------------------------------------------
© 2008 All rights reserved.                                    Privacy policy   Built with wysiwygwebbuilder
Tutorials And Help by....
I have tried to make every step easy to follow and instructions as clear as possible. If anyone has tried this tutorial and feels there is a better way to word the instructions or I have missed a step - Please contact me with any advice and I will change this tutorial as needed.
Hosted By Web Hosting by StartLogic