我的脚本似乎不起作用,建议使用SMTP


My Script APPEARS not to be working, suggest to use SMTP?

首先,我正在学习PHP,而且我还处于初级水平,(对不起)。我有一个脚本,一旦它填写了表格,就会给我发一封电子邮件。表格位于另一个页面上,这是一个神奇的页面。出于某种原因,这个代码不起作用,我根本没有收到电子邮件。因为我错过了什么!

谢谢

    <?php
if(!$_POST) exit;
// Verifico email.
function isEmail($email) { 
    return(preg_match("/^[-_.[:alnum:]]+@((([[:alnum:]]|[[:alnum:]][[:alnum:]-]*[[:alnum:]])'.)+(ad|ae|aero|af|ag|ai|al|am|an|ao|aq|ar|arpa|as|at|au|aw|az|ba|bb|bd|be|bf|bg|bh|bi|biz|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|com|coop|cr|cs|cu|cv|cx|cy|cz|de|dj|dk|dm|do|dz|ec|edu|ee|eg|eh|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gh|gi|gl|gm|gn|gov|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|in|info|int|io|iq|ir|is|it|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|mg|mh|mil|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|museum|mv|mw|mx|my|mz|na|name|nc|ne|net|nf|ng|ni|nl|no|np|nr|nt|nu|nz|om|org|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|pro|ps|pt|pw|py|qa|re|ro|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|sl|sm|sn|so|sr|st|su|sv|sy|sz|tc|td|tf|tg|th|tj|tk|tm|tn|to|tp|tr|tt|tv|tw|tz|ua|ug|uk|um|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|yu|za|zm|zw)$|(([0-9][0-9]?|[0-1][0-9][0-9]|[2][0-4][0-9]|[2][5][0-5])'.){3}([0-9][0-9]?|[0-1][0-9][0-9]|[2][0-4][0-9]|[2][5][0-5]))$/i",$email));     
}
if (!defined("PHP_EOL")) define("PHP_EOL", "'r'n");
$name     = $_POST['name'];
$email    = $_POST['email'];
$subject  = $_POST['subject'];
$comments = $_POST['comments'];
$verify   = $_POST['verify'];
if(trim($name) == '') {
    echo '<div class="error_message">Attention! You must enter your name.</div>';
    exit();
} else if(trim($email) == '') {
    echo '<div class="error_message">Attention! Please enter a valid email address.</div>';
    exit();
} else if(!isEmail($email)) {
    echo '<div class="error_message">Attention! You have enter an invalid e-mail address, try again.</div>';
    exit();
}
if(trim($subject) == '') {
    echo '<div class="error_message">Attention! Please enter a subject.</div>';
    exit();
} else if(trim($comments) == '') {
    echo '<div class="error_message">Attention! Please enter your message.</div>';
    exit();
} else if(!isset($verify) || trim($verify) == '') {
    echo '<div class="error_message">Attention! Please enter the verification number.</div>';
    exit();
} else if(trim($verify) != '4') {
    echo '<div class="error_message">Attention! The verification number you entered is incorrect.</div>';
    exit();  
}
if(get_magic_quotes_gpc()) {
    $comments = stripslashes($comments);
}

// Configuracion.
$address = "abc@xyz.com";
$addressrrhh = "abc@xyz.com";
$e_subject = 'You''ve been contacted by ' . $name . '.';
// Campos del form ampliables.
$e_body = "You have been contacted from JACK contact form by $name with regards to $subject, their additional message is as follows." . PHP_EOL . PHP_EOL;
$e_content = "'"$comments'"" . PHP_EOL . PHP_EOL;
$e_reply = "You can contact $name via email, $email";
$msg = wordwrap( $e_body . $e_content . $e_reply, 70 );
$headers = "From: $email" . PHP_EOL;
$headers = "BCC: $addressrrhh" . PHP_EOL;
$headers .= "Reply-To: $email" . PHP_EOL;
$headers .= "MIME-Version: 1.0" . PHP_EOL;
$headers .= "Content-type: text/plain; charset=utf-8" . PHP_EOL;
$headers .= "Content-Transfer-Encoding: quoted-printable" . PHP_EOL;
if(mail($address, $e_subject, $msg, $headers)) {
    // Mensaje envio OK
    echo "<fieldset>";          
    echo "<div id='success_page'>";
    echo "<h1>Email Sent Successfully.</h1>";
    echo "<p>Thank you <strong>$name</strong>, your message has been submitted.</p>";
    echo "</div>";
    echo "</fieldset>";
} else {
    echo 'ERROR!';
}
?>

请查看http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods和http://php.net/manual/de/function.mail.php第一个

第一件事

  1. 您在提交Web服务器错误日志时是否有错误?

  2. 你的邮件寄出去了吗?(查看您的邮件日志)

  3. 如果是,它在你的垃圾邮件文件夹中吗?

关于直接标记为垃圾邮件的邮件事情发生了一点"变化",你不能在不设置"第五个"参数的情况下发送电子邮件,否则你的邮件将直接进入垃圾邮件箱。

发件人http://php.net/manual/en/function.mail.php

The additional_parameters parameter can be used to pass additional flags as command line options to the program configured to be used when sending mail, as defined by the sendmail_path configuration setting. For example, this can be used to set the envelope sender address when using sendmail with the -f sendmail option.
The user that the webserver runs as should be added as a trusted user to the sendmail configuration to prevent a 'X-Warning' header from being added to the message when the envelope sender (-f) is set using this method. For sendmail users, this file is /etc/mail/trusted-users.

此外,我建议你使用非常好的phpmailer

用法示例:http://phpmailer.worxware.com/index.php?pg=examplebmail

希望它能帮助

我认为使用SMTP比其他方法更好。如果您在mail()函数中遇到问题,可以查看PEAR:PEAR.php.net

Post完全不同。它不像荷兰语单词post,意思是邮件:D

$_POST是一个变量,用于存储发布表单发送的所有值。例如:一个使用POST方法的表单有一个名为"foo"的输入文本字段。在该字段中键入:"bar"并提交字段后,将创建一个$_POST数组,其中$_POST["foo"]的值为"bar"

也许你读过一些关于不使用php的on mail()函数而更好地使用SMTP的文章?这更有意义。。。

祝好运