Please read:
Please be certain you type your email address correctly and it is a valid address. If my reply is bounced there is nothing I can do.

I make an effort to respond to all emails, however understand that I get many and business related emails always get priority. Therefore if your email is a general question not customer related, a reply may be delayed several days.



Contact Me #Replace 'you' with whatever the first half of your email address is. /*-----------*/ /* Set these */ /*-----------*/ #Domain Name that emails will go to. $domainname = "arbreptiles.com"; #Full URL of the header file $headerfile = 'http://www.arbreptiles.com/header.html'; #Full URL of the footer file $footerfile = 'http://www.arbreptiles.com/footer.html'; /*------------------------*/ /* End of configuration */ /*------------------------*/ if(!isset($_GET['sendto']) && !isset($_POST['sendto'])) { echo "Invalid call to script"; exit; } if(!isset($_GET['action'])) { #print the form echo ""; echo "

"; echo "
\n"; echo ""; echo "\n"; echo ""; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "
(*) denotes a required field
*Your Email Address:

Please be sure to enter your correct Email Address. Without a valid email address I will not be able to respond to your message.
Message Subject:
*Your Message:\n"; echo "

Please include as much information as possible about your inquiry.
This is a required field for the email to be sent. If you are only subscribing to the news letter, you can just put 'subscribe' in the following box.

\n"; echo "
\n"; echo "
"; echo "
"; if($footer = @fopen($footerfile,"r")) { @fpassthru($footer); } exit; } if(isset($_GET['action']) && $_GET['action'] = 'send' && isset($_POST['sendto'])) { #send the message if(isset($_POST['email']) && !empty($_POST['email']) && preg_match("|\w+@.*\..*|",$_POST['email'],$matches)) { $sender_address = $_POST['email']; } else { echo "

Error: You have not entered a valid email address.

"; echo "Please return to the form (by using your browser's 'Back' button) and enter a valid email address.

"; exit; } $body = stripslashes($_POST['body']); if(empty($_POST[body])) { echo "

Error: You have not entered any text into the message field.

"; echo "Please return to the form (by using your browser's 'Back' button) and type your message.

"; exit; } $body .= "\n\n-----------------------------------------\n"; $body .= "I.P Address: $REMOTE_ADDR\nHost Name: $REMOTE_HOST\n"; $body .= "Referring URL: " . $_POST['REFERER'] . "\n"; /* made it here. Time to send the mail */ $to_address = $_POST['sendto'] . "@" . $domainname . ""; if(!empty($_POST['subject'])) $subject = "Message to " . $_POST['sendto'] . "@" . $domainname . ": " . stripslashes($_POST['subject']) . ""; else $subject = "Message to " . $_POST['sendto'] . "@" . $domainname . " from $sender_address"; $otherHeaders = "From: $sender_address"; if(mail($to_address,$subject,$body,$otherHeaders)) { echo "



Your message has been sent to Clay along with your Social Security number and bank account information......

JUST KIDDING HAHA.

Thank you for taking the time to contact me. I will respond to your message as soon as possible.

You can use the navigation bar at the top of the page to return to the main website.







"; } else { echo "

The was an error, and your message could not be sent. Please try again later

Or you can send your message from your email client to clay@nospam_arbreptiles.com
Just remove the nospam_ from the email address

"; } if($footer = @fopen($footerfile,"r")) { @fpassthru($footer); } } else { #error message for invalid call to script echo "Invalid call to script (1)"; if($footer = @fopen($footerfile,"r")) { @fpassthru($footer); } exit; } ?>