微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

PHP邮件脚本,未发送电子邮件

我正在尝试通过简单的 PHP邮件脚本发送邮件.我已多次检查代码,页面将转到“Thankyou_page”,好像邮件应该已发送,但我还没有收到电子邮件.任何想法为什么这不起作用?

<?PHP
/*
This first bit sets the email address that you want the form to be submitted to.
You will need to change this value to a valid email address that you can access.
*/
$webmaster_email = "email@mail.com";
$subject = "Contact Us";

/*
This bit sets the URLs of the supporting pages.
If you change the names of any of the pages,you will need to change the values here.
*/
$Feedback_page = "Feedback_form.html";
$error_page = "error_message.html";
$thankyou_page = "thank_you.html";

/*
This next bit loads the form field data into variables.
If you add a form field,you will need to add it here.
*/
$email_address = $_REQUEST['email_address'] ;
$comments = $_REQUEST['comments'] ;

/*
The following function checks for email injection.
Specifically,it checks for carriage returns - typically used by spammers to inject a CC list.
*/
function isInjected($str) {
    $injections = array('(\n+)','(\r+)','(\t+)','(%0A+)','(%0D+)','(%08+)','(%09+)'
    );
    $inject = join('|',$injections);
    $inject = "/$inject/i";
    if(preg_match($inject,$str)) {
        return true;
    }
    else {
        return false;
    }
}

// If the user tries to access this script directly,redirect them to the Feedback form,if (!isset($_REQUEST['email_address'])) {
header( "Location: $Feedback_page" );
}

// If the form fields are empty,redirect to the error page.
elseif (empty($email_address) || empty($comments)){
header( "Location: $error_page" );
}

// If email injection is detected,redirect to the error page.
elseif ( isInjected($email_address) ) {
header( "Location: $error_page" );
}

// If we passed all prevIoUs tests,send the email then redirect to the thank you page.
else {
mail( $webmaster_email,$subject,$comments,"From: " . $email_address);
header( "Location: $thankyou_page" );
}
?>

解决方法

使用编写良好的库,如SwiftMailer或PHPMailer.使用邮件功能发送电子邮件而没有很好的PHP命令是一个杀手.

PhpMailer vs. SwiftMailer?

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐