<?php /************* Ajax Contact Form 1.0 *****************************/ /* Released by AwesomePHP.com, under the GPL License, a copy of it should be attached to the zip file, or you can view it on http://AwesomePHP.com/gpl.txt */ /************* Ajax Contact Form 1.0 *****************************/ /* Emails to send admins (comma separated) */ $toEmails = 'hide@address.com'; /* Site Name */ $siteName = 'Ajax Contact Form Demo'; /* Email Subject for admins */ $subject = 'You\'v Got Mail'; /* Email subject for users making the contact*/ $subjectUser = 'Thank you for your contact'; /* Email message to send users making the contact*/ $userMessage = "This email is to confirm that we recieved your contact request."; /* Email message add-on if also sending variables (information) */ $userMessageVariables = "Here is the information you sent us:\n<br /> -------------------------------------------------\n<br />"; /* Thank you message on page */ $thankYouNote = 'Your message has been sent. Thank you.'; /* Send Thank you Email to sender */ $sendThankYou = true; /* Include form variables in Thank you Email */ $sendVariable = true; /* Email field to send thank you to */ $thankYouEmailField = 'customerEmail'; /* Do you want to require any fields ?*/ $REQUIRE[] = 'customerName'; $REQUIRE[] = 'customerMessage'; /* Email fields to check for validation */ /* If you want an email field to be required, it should also be on the REQUIRE list */ $EMAILFIELD[] = 'customerEmail'; ?>