Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
}
?>
share|improve this question
What is the var_dump output? – janenz00 Oct 8 '12 at 1:48
No idea, I just copied it from the link. – zetologos Oct 8 '12 at 1:57
What do you get when you execute the script? – janenz00 Oct 8 '12 at 2:05
HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfill the request. And I had to add this to make the var_dump work. 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
I just checked my syntax on codepad and I found this at line 76. Parse error: syntax error, unexpected T_STRING on line 76 – zetologos Oct 8 '12 at 3:26
show 3 more comments

closed as too localized by toscho, duskwuff, Peter O., tc., wich Oct 9 '12 at 5:39

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Didn't get it to work but I don't need it anymore. Thanks anyways.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.