Please, provide us with an email address so that we may contact you with a reply.
"; } if(empty($_REQUEST['subject']) || !strlen(trim($_REQUEST['subject'])) || invalid_characters($_REQUEST['subject'])) { $s_css .= "#subject { color: red; }\n"; print "Please, provide us with an email subject so that we may better respond to your correspondence.
"; } if(empty($_REQUEST['body']) || !strlen(trim($_REQUEST['body']))) { $s_css .= "#body { color: red; }\n"; print "Please, provide us with an email message so that we might correspond.
"; } if(!empty($s_css)) { print <<< EOS EOS; } else { mail('doug@theftproofdata.com', trim($_REQUEST['subject']), trim($_REQUEST['body']), "From: " . trim($_REQUEST['email']) . "\r\n"); ?>Message sent!
$_REQUEST['email'] = $_REQUEST['subject'] = $_REQUEST['body'] = ''; l_redirect('/'); } } ?>