<?php $to = 'hbaker1024@gmail.com& '; $subject = 'PHP mail() test from haroldb.com'; $message = 'This is a simple test.'; $headers = "From: contact@daytonmennonite.org\r\ nReply-To: contact@daytonmennonite.org\r\ n"; if (mail($to, $subject, $message, $headers)) { echo "OK"; } else { echo "FAIL"; } ?>