php表单发送邮件
Posted
技术标签:
【中文标题】php表单发送邮件【英文标题】:php form send email 【发布时间】:2013-11-10 19:37:59 【问题描述】:我知道我的 php 表单在 godaddy 服务器上工作: http://thespanishlanguageacademy.net/los-angeles/learn-spanish-kids-children/kontact.html
请自行测试,输入您的电子邮件地址,它会向您发送一份副本。
我将相同的代码复制到不同的服务器中。这个服务器不是爸爸。我知道 php 在这台服务器上工作,但由于某种原因,这种形式不工作:
http://hancockcollege.us/kontact.html
这里是php代码:
// if the Email_Confirmation field is empty
if(isset($_POST['Email_Confirmation']) && $_POST['Email_Confirmation'] == '')
// put your email address here scott.langley.ngfa@statefarm.com, slangleys@yahoo.com
$youremail = 'bomandty@gmail.com';
// prepare a "pretty" version of the message
$body .= "Thank You for contacting us! We will get back with you soon.";
$body .= "\n";
$body .= "\n";
foreach ($_POST as $Field=>$Value)
$body .= "$Field: $Value\n";
$body .= "\n";
$CCUser = $_POST['EmailAddress'];
// Use the submitters email if they supplied one
// (and it isn't trying to hack your form).
// Otherwise send from your email address.
if( $_POST['EmailAddress'] && !preg_match( "/[\r\n]/", $_POST['EmailAddress']) )
$headers = "From: $_POST[EmailAddress]";
else
$headers = "From: $youremail";
// finally, send the message
mail($youremail, 'Form request', $body, $headers, $CCUser );
// otherwise, let the spammer think that they got their message through
【问题讨论】:
如果它在一台服务器上工作但在另一台服务器上工作,那么它可能是特定于服务器的。但是,我会注意到$headers = "From: $_POST[EmailAddress]";
应该是$headers = "From: $_POST['EmailAddress']";
。您忘记了密钥名称周围的引号。
这不起作用:$headers = "From: $_POST['EmailAddress']";
当您说“它不起作用”时,您的意思是您收到错误消息,还是您仍然没有收到邮件?它仍然可能是特定于服务器的 - 关于配置和/或垃圾邮件过滤器。我之所以这么说是因为您声称您当前的代码在 GoDaddy 服务器上运行良好,但在您遇到问题的备用服务器上运行良好。
没用。没有邮寄。代码错误。
服务器可能不支持mail()函数。
【参考方案1】:
首先, 使用这个标题:
<?php
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=utf-8\r\n";
//Fom
$headers .= "From: XXX XXXX XXXXX <xxxx@xxxx.xxx>\r\n";
//Reply
$headers .= "Reply-To: example@example.com\r\n";
//Path
$headers .= "Return-path: example@example.com\r\n";
//CC
$headers .= "Cc: example@example.com\r\n";
//BBC
$headers .= "Bcc: example@example.com,example@example.com\r\n";
?>
二,阅读PHPMailer并查看下一段代码:
然后试试这个:
<?php
date_default_timezone_set('Etc/UTC');
require '../PHPMailerAutoload.php';
//Create a new PHPMailer instance
$mail = new PHPMailer();
//Tell PHPMailer to use SMTP
$mail->isSMTP();
//Enable SMTP debugging
// 0 = off (for production use)
// 1 = client messages
// 2 = client and server messages
$mail->SMTPDebug = 2;
//Ask for HTML-friendly debug output
$mail->Debugoutput = 'html';
//Set the hostname of the mail server
$mail->Host = "mail.example.com";
//Set the SMTP port number - likely to be 25, 465 or 587
$mail->Port = 25;
//Whether to use SMTP authentication
$mail->SMTPAuth = true;
//Username to use for SMTP authentication
$mail->Username = "yourname@example.com";
//Password to use for SMTP authentication
$mail->Password = "yourpassword";
//Set who the message is to be sent from
$mail->setFrom('from@example.com', 'First Last');
//Set an alternative reply-to address
$mail->addReplyTo('replyto@example.com', 'First Last');
//Set who the message is to be sent to
$mail->addAddress('whoto@example.com', 'John Doe');
//Set the subject line
$mail->Subject = 'PHPMailer SMTP test';
//Read an HTML message body from an external file, convert referenced images to embedded,
//convert HTML into a basic plain-text alternative body
$mail->msgHTML(file_get_contents('contents.html'), dirname(__FILE__));
//Replace the plain text body with one created manually
$mail->AltBody = 'This is a plain-text message body';
//Attach an image file
$mail->addAttachment('images/phpmailer_mini.gif');
//send the message, check for errors
if (!$mail->send())
echo "Mailer Error: " . $mail->ErrorInfo;
else
echo "Message sent!";
?>
【讨论】:
【参考方案2】:也许您必须在另一台服务器中手动初始化 SMTP 路径,我之前遇到过类似的问题,设置正确的 SMTP 解决了我的问题。
ini_set("SMTP", "aspmx.l.google.com");
ini_set("sendmail_from", "yourmeail@yourdomain.com");
【讨论】:
谢谢! 1)我应该把这个放在哪里? 2)你能提供准确的完整代码吗? 3)我只使用发送到:bomandty@gmail.com 作为测试。 4) 它最终会发送到:admissions@hancockcollege.us。 我在这里添加了,但是没有用:ini_set("SMTP", "aspmx.l.google.com"); ini_set("sendmail_from", "bomandty@gmail.com"); // 如果 Email_Confirmation 字段为空 if(isset($_POST['Email_Confirmation']) && $_POST['Email_Confirmation'] == '') 在我的情况下,我必须与我的托管人员一起找出正确的 SMTP 服务器,出于安全原因,他们更改了默认服务器。我在我的 CPanel 上打开了一张票,他们提供了正确的路径,问题是您必须在要发送电子邮件的所有 PHP 脚本之上设置 ini_set("SMTP","SMTP_PATH")。以上是关于php表单发送邮件的主要内容,如果未能解决你的问题,请参考以下文章