如何使用PHP检查邮件是否发送?

时间:2015-11-10 15:35:45

标签: php email

如何使用php检查邮件是否发送?

我使用此代码使用php发送电子邮件。它工作得很好。

但我想检查电子邮件发送成功与否,我该怎么做?

<?PHP
    $to      = "test@mail.com";
    $subject = "test subject";
    $message = "test message";
    $headers  = 'MIME-Version: 1.0' . "\r\n"; 
    $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
    $headers .= 'From: SENDER <noreply@sender.com>' . "\r\n";
    $headers .= 'Return-Path: return@sender.com' . "\r\n";
    mail($to, $subject, $message, $headers, '-freturn@sender.com');
?>

0 个答案:

没有答案