Sorry but we don't have that email in our system. Please try again. Thank you!"); }else{ //comes from config which pulls from /inc $email_body = $forgot_password_email; } $from = $from_email; $reply_to = $reply_to_email; $return_path = $return_path_email; $to = $email; $subject = $forgot_password_email_subject; //***attaches view tracker to link tracked code*** - CCC $mailbody= "$email_body"; //____________________________Begin Multipart Mail Sender //add From: header $headers = "From:$from\nReply-to:$reply_to\nReturn-path:$return_path\nJobID:$date\n"; //specify MIME version 1.0 $headers .= "MIME-Version: 1.0\n"; //unique boundary $boundary = uniqid("HTMLDEMO8656856"); //tell e-mail client this e-mail contains//alternate versions $headers.="X-Priority: 3\n"; $headers.="Content-Type: multipart/alternative; boundary=\"".$boundary."\"\n"; $headers.="Content-Transfer-Encoding: 7bit\n"; //message to people with clients who don't //understand MIME $headers .= "This is a MIME encoded message.\n\n"; //plain text version of message $headers .= "--$boundary\n" . "Content-Type: text/plain; charset=ISO-8859-1\r\n" . "Content-Transfer-Encoding: base64\n\n"; $headers .= chunk_split(base64_encode("$mailbody")); //HTML version of message $headers .= "--$boundary\n" . "Content-Type: text/html; charset=ISO-8859-1\n" . "Content-Transfer-Encoding: base64\n\n"; $headers .= chunk_split(base64_encode("$mailbody")); //send message If (mail("$to", "$subject", "", $headers)) { echo"An account verification link has been sent to $email. This link will allow you to reset your password

Emails may take up to 10 minutes to arrive. Check your spam folder also and whitelist this site if you find our message there. Thanks! Back to login
"; } ?>