|
|
|
|
Kimberly Gillespie
Feel free to contact us if you have any questions or if you would like to request any photos.
107 Eric Circle
Smyrna, TN 37167
PHONE: (615) 267-0329
E-MAIL: twofemcats@yahoo.com
|
|
|
if(isset($_POST['email'])) {
$to = 'twofemcats@yahoo.com';
$subject = 'Contact Us';
$mess = "FirstName: " . $_POST['firstname'] . "\n\nLastName: " . $_POST['lastname'] . "\n\nAddress: " . $_POST['address'] . "\n\nCity: " . $_POST['city']. "\n\nState: " . $_POST['state'] . "\n\nCountry: " . $_POST['country'] . "\n\nPhone: " . $_POST['phone'] . "\n\nFax: " . $_POST['fax'] . "\n\nEmail: " . $_POST['email'] . "\n\nComments: " . $_POST['comments'];
$headers = "From:" . $_POST['email'] . "\r\n" . "Reply-To:" . $_POST['email'];
mail($to, $subject, $mess, $headers);
echo 'Your email has been sent, thank you.';
}
?>
|
|
|
|