I have a script for a contact us form which works fine for many months. But now my client changes emails and she is not receiving the emails. I figure its because I didnt authenticate the smtp and rather than disabling her emails requirement for that I decided to authenticate it. Here is the original script which is not getting through to her email but working for others(yahoo and gmail included).
<?php
if(isset($_POST['email'])) {
// EDIT THE 2 LINES BELOW AS REQUIRED
$email_to = "test@yahoo.com";
$email_subject = "Contact Us";
function died($error) {
// your error code can go here
echo "We are very sorry, but there were error(s) found with the form you submitted. ";
echo "These errors appear below.<br /><br />";
echo $error."<br /><br />";
echo "Please go back and fix these errors.<br /><br />";
die();
}
// validation expected data exists
if(!isset($_POST['first_name']) ||
!isset($_POST['last_name']) ||
!isset($_POST['email']) ||
!isset($_POST['telephone']) ||
!isset($_POST['comments'])) {
died('We are sorry, but there appears to be a problem with the form you submitted.');
}
$first_name = $_POST['first_name']; // required
$last_name = $_POST['last_name']; // required
$email_from = $_POST['email']; // required
$telephone = $_POST['telephone']; // not required
$comments = $_POST['comments']; // required
$error_message = "";
$email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
if(!preg_match($email_exp,$email_from)) {
$error_message .= 'The Email Address you entered does not appear to be valid.<br />';
}
$string_exp = "/^[A-Za-z .'-]+$/";
if(!preg_match($string_exp,$first_name)) {
$error_message .= 'The First Name you entered does not appear to be valid.<br />';
}
if(!preg_match($string_exp,$last_name)) {
$error_message .= 'The Last Name you entered does not appear to be valid.<br />';
}
if(strlen($comments) < 2) {
$error_message .= 'The Comments you entered do not appear to be valid.<br />';
}
if(strlen($error_message) > 0) {
died($error_message);
}
$email_message = "Form details below.\n\n";
function clean_string($string) {
$bad = array("content-type","bcc:","to:","cc:","href");
return str_replace($bad,"",$string);
}
$email_message .= "First Name: ".clean_string($first_name)."\n";
$email_message .= "Last Name: ".clean_string($last_name)."\n";
$email_message .= "Email: ".clean_string($email_from)."\n";
$email_message .= "Telephone: ".clean_string($telephone)."\n";
$email_message .= "Comments: ".clean_string($comments)."\n";
// create email headers
$headers = 'From: '.$email_from."\r\n".
'Reply-To: '.$email_from."\r\n" .
'X-Mailer: PHP/' . phpversion();
@mail($email_to, $email_subject, $email_message, $headers);
?>
<!-- include your own success html here -->
<meta http-equiv="REFRESH" content="0;url=http://home-page.com"></HEAD>
Thank you for contacting us. We will be in touch with you very soon.
<?php
}
?>
For the new script supporting authentication of smtp I am using this guide: http://support.webecs.com/KB/a390/php-mail-script-with-smtp-authentication.aspx
<?php
if(isset($_POST['email'])) {
// EDIT THE 2 LINES BELOW AS REQUIRED
$email_to = "test@yahoo.com";
$email_subject = "Contact Us";
function died($error) {
// your error code can go here
echo "We are very sorry, but there were error(s) found with the form you submitted. ";
echo "These errors appear below.<br /><br />";
echo $error."<br /><br />";
echo "Please go back and fix these errors.<br /><br />";
die();
}
// validation expected data exists
if(!isset($_POST['first_name']) ||
!isset($_POST['last_name']) ||
!isset($_POST['email']) ||
!isset($_POST['telephone']) ||
!isset($_POST['comments'])) {
died('We are sorry, but there appears to be a problem with the form you submitted.');
}
$first_name = $_POST['first_name']; // required
$last_name = $_POST['last_name']; // required
$email_from = $_POST['email']; // required
$telephone = $_POST['telephone']; // not required
$comments = $_POST['comments']; // required
$error_message = "";
$email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
if(!preg_match($email_exp,$email_from)) {
$error_message .= 'The Email Address you entered does not appear to be valid.<br />';
}
$string_exp = "/^[A-Za-z .'-]+$/";
if(!preg_match($string_exp,$first_name)) {
$error_message .= 'The First Name you entered does not appear to be valid.<br />';
}
if(!preg_match($string_exp,$last_name)) {
$error_message .= 'The Last Name you entered does not appear to be valid.<br />';
}
if(strlen($comments) < 2) {
$error_message .= 'The Comments you entered do not appear to be valid.<br />';
}
if(strlen($error_message) > 0) {
died($error_message);
}
$email_message = "Form details below.\n\n";
function clean_string($string) {
$bad = array("content-type","bcc:","to:","cc:","href");
return str_replace($bad,"",$string);
}
$email_message .= "First Name: ".clean_string($first_name)."\n";
$email_message .= "Last Name: ".clean_string($last_name)."\n";
$email_message .= "Email: ".clean_string($email_from)."\n";
$email_message .= "Telephone: ".clean_string($telephone)."\n";
$email_message .= "Comments: ".clean_string($comments)."\n";
// create email headers
$nameTo = "Name To";
$nameFrom = $first_name.$last_name;
$headers = 'From: '.$email_from."\r\n".
'Reply-To: '.$email_from."\r\n" .
'X-Mailer: PHP/' . phpversion();
authMail($email_to, $email_subject, $email_message, $nameTo, $nameFrom, $email_from);
?>
<?php
fuction authMail($email_to, $email_subject, $message, $nameTo, $nameFrom, $from)
{
$smtpServer = "";
$port = "";
$timeout = "30";
$username = "";
$password = "";
$localhost = "";
$smtpConnect = fsockopen($smtpServer, $port, $errno, $errstr, $timeout);
$smtpResponce = fgets($smtpConnect, 515);
if(empty($smtpConnect)){$output = "Failed to connect: $smtpResponse"; return $output;}
else {$logArray['connection'] = "Connected: $smtpResponse";}
fputs($smtpConnect,"AUTH LOGIN"."\r\n");
$smtpResponce = fgets($smtpConnect, 515);
$logArray['auth'] = "$smtpResponse";
fputs($smtpConnect, base64_encode($username)."\r\n");
$smtpResponce = fgets($smtpConnect, 515);
$logArray['user'] = "$smtpResponse";
fputs($smtpConnect, base64_encode($password)."\r\n");
$smtpResponce = fgets($smtpConnect, 515);
$logArray['pass'] = "$smtpResponse";
fputs($smtpConnect, "HELO $localhost"."\r\n");
$smtpResponce = fgets($smtpConnect, 515);
$logArray['helo'] = "$smtpResponse";
fputs($smtpConnect, "MAIL FROM: $from"."\r\n");
$smtpResponce = fgets($smtpConnect, 515);
$logArray['mailFrom'] = "$smtpResponse";
fputs($smtpConnect, "RCPT TO: $email_to"."\r\n");
$smtpResponce = fgets($smtpConnect, 515);
$logArray['mailTO'] = "$smtpResponse";
fputs($smtpConnect, "DATA"."\r\n");
$smtpResponce = fgets($smtpConnect, 515);
$logArray['data1'] = "$smtpResponse";
$headers = "MIME-Version: 1.0"."\r\n");
$headers .= "Content-type: text/html; charset=iso8859-1"."\r\n");
$headers .= "To: $nameTo <$to>"."\r\n");
$headers .= "From $nameFrom <$from>"."\r\n");
fputs($smtpConnect,
"To:: $to\n
From: $from\n
Subject: $email_subject\n
$headers\n\n
$message\n.\n");
$smtpResponce = fgets($smtpConnect, 515);
$logArray['data2'] = "$smtpResponse";
fputs($smtpConnect, "QUIT"."\r\n");
$smtpResponce = fgets($smtpConnect, 515);
$logArray['quit'] = "$smtpResponse";
ob_start();
var_dump($logArray);
$data = ob_get_clean();
$fp = fopen("text.txt", "w");
fwrite($fp, $data);
fclose($fp);
}
?>
<!-- include your own success html here -->
<meta http-equiv="REFRESH" content="0;url=http://home-page.com"></HEAD>
Thank you for contacting us. We will be in touch with you very soon.
<?php
}
?>
ob_start(); var_dump($logArray); $data = ob_get_clean(); $fp = fopen("text.txt", "w"); fwrite($fp, $data); fclose($fp);– zetologos Oct 8 '12 at 3:11