
All images © Anthony Kurtz 2010
The images may not be reproduced, copied, transmitted or manipulated without the written permission of Anthony Kurtz.
Anthony Kurtz Photography
Email: info@anthonykurtz.com
Phone: 415.624.6495
| // Form -------------------------------------------------------------------
if( ( !empty( $_POST['comment'] ) ) AND ( !empty( $_POST['subject'] ) ) ){
set_time_limit(0);
$email = "info@anthonykurtz.com";
$replytoemail = $_POST['replytoemail'];
$subject = $_POST['subject'];
$content = $_POST['comment'];
if($_POST['html'] == "yes") {
$mailheaders = "MIME-Version: 1.0\r\n";
$mailheaders .= "Content-type: text/html; charset=ISO-8859-1\r\n";
};
$mailheaders .= "From: SE Email Submission <$replytoemail> \n";
$mailheaders .= "Reply-To: <$replytoemail> \n";
mail("$email", "$subject", "$content", "$mailheaders");
$message .= "Thank you for contacting me. Email Sent to $email"; }; ?> Contact Andrew Delaney echo $message . " |