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

标签 email 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 命令的情况下使用 mail 函数发送电子邮件是一个 killer 。

PhpMailer vs. SwiftMailer?

关于email - PHP 邮件脚本,电子邮件未发送,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12502017/

相关文章:

java - 如何在 Android 中使用 IMAP/POP3 协议(protocol)获取邮件

c# - 如何在 Windows 10 邮件应用程序中打开带附件的新邮件

php - Laravel 搜索关键字查询

php - Google 通知 channel 允许的最长过期时间是多少?

ios - Facebook v2 与 iOS SDK 集成

Outlook 中的 HTML 电子邮件背景中断布局 - 使用 vml 方法

javascript - 自动从 Gmail 帐户垃圾邮件文件夹中删除包含特定关键字的电子邮件

php - htaccess 换行崩溃页面

php - Symfony2 表格 : How to display all the errors?

php - 在对整数数组进行数学运算时如何翻转?