I built a set of scripts which are run using server cron jobs, the scripts basically handle the sanitization and optimization of the large databases the website is accumulating. The main table has around 10^5 records with each record having lots of data, totaling up to 1.7GB. The main table crashes often, therefore I created script to create copies of that table and then restore it when the table goes missing. The script was also designed to send me an email in case the worst case occurs (i.e multiple table failures.)

The irony is, I copied the code from one of my other websites (which was written by me too) where the code works perfectly but it fails to work now. Please have a look towards the following code:

  <?php

function send_mail($error){

    //database details
    include_once('db_config.php');

    $subject = "[URGENT] Your Website Is Experiencing Problems!";

    $headers = "From: My Website Manager (no-reply@mywebsite.com)\r\n";
    $headers .= "Reply-To: no-reply@mywebsite.com\r\n"; 
    $headers .= "Return-Path:  My Website Manager (no-reply@mywebsite.com)\r\n"; 
    $headers .= "Organization:  My Website Manager\r\n";
    $headers .= "MIME-Version: 1.0\r\n";
    $headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
    $headers .= "X-Priority: 3\r\n";
    $headers .= "X-Mailer: PHP". phpversion() ."\r\n";

    $message = 'Your Website Generated The Following Error While Completing Backups '.$error.' Please Get In Touch With Support.';

    $add_par = "-f My Website Manager (no-reply@mywebsite.com)";
    $mail_sent = @mail( $owner, $subject, $message, $headers, $add_par );
    if($mail_sent){
        return true;
    }else{
        return false;
    }
}

$send = send_mail("Test Mail");
if($send){
    echo "mail sent successfully";
}else{
    echo "There was an error sending mail";
}
?>
link|improve this question
1  
Try checking your server's mail log. Probably it requires authentication or something alike. The exact reason should be in there. – Oldskool Feb 1 at 10:45
Agree with @Oldskool, your logs are a important source of info. A wild guess: the smtp configuration for PHP in the server you're testing (which surely differs from the one in the server where this works) needs to be changed. – Alfabravo Feb 1 at 12:01
$add_par = "-f My Website Manager (no-reply@mywebsite.com)"; that doesn't look like a valid argument to sendmail -f. shouldn't that just be the envelope address or at least in the form "\"My Website Manager\" <no-reply@mywebsite.com>\"" ? also, some mailserver configurations don't allow -f at all... – Gryphius Feb 1 at 13:07
1  
You might also consider removing the '@' before the mail command so that your errors from mail() are not being suppressed. – gabe. Feb 1 at 22:42
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.