我试图发送一封电子邮件使用mail()
PHP
函数。我有它的工作,直到我试图给它一个主题的"用户注册",然后邮件不发送!
这是代码(已大大简化)
$to = $this->post_data['register-email'];
$message = 'Hello etc';
$headers = 'From: noreply@example.com' . "\r\n" ;
$headers .= 'Content-type: text/html; chareset=iso-8859-1\r\n';
$headers .= 'From: Website <admin@example.com>';
mail($to, 'User Registration', $message, $headers);
我还试图使用一个包含文本字符串的变量,但没有成功。
为什么当我添加主题异常时,它不发送邮件?
谢谢
编辑:更新的代码仍然不工作
$to = $this->post_data['register-email'];
$message = 'Hello etc';
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= 'From: Website <admin@example.com>';
mail($to, 'User Registration', $message, $headers);
在第4行,您使用'
将其中的所有内容作为字符串处理,因此请更改
$headers .= 'Content-type: text/html; chareset=iso-8859-1\r\n';
到:
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
如注释中所述,将chareset
更改为charset
编辑:
如果您发送的是txt/html邮件,那么您也可以根据文档在邮件头中设置mime,因此请尝试以下方法
$to = $this->post_data['register-email'];
$message = 'Hello etc';
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= 'From: Website <admin@example.com>' . "\r\n";
mail($to, 'User Registration', $message, $headers);
如果仍然不起作用,您可以尝试调试代码,只需添加
error_reporting(E_ALL);
ini_set('display_errors', '1');
在页面顶部,然后从那里开始,如果你仍然无法自己解决它,请将其发布在这里,我将尽我最大的努力帮助你。
我在我的大多数项目中使用这个代码:
$subject = 'subject';
$message = 'message';
$to = 'user@gmail.com';
$type = 'plain'; // or HTML
$charset = 'utf-8';
$mail = 'no-reply@'.str_replace('www.', '', $_SERVER['SERVER_NAME']);
$uniqid = md5(uniqid(time()));
$headers = 'From: '.$mail."\n";
$headers .= 'Reply-to: '.$mail."\n";
$headers .= 'Return-Path: '.$mail."\n";
$headers .= 'Message-ID: <'.$uniqid.'@'.$_SERVER['SERVER_NAME'].">\n";
$headers .= 'MIME-Version: 1.0'."\n";
$headers .= 'Date: '.gmdate('D, d M Y H:i:s', time())."\n";
$headers .= 'X-Priority: 3'."\n";
$headers .= 'X-MSMail-Priority: Normal'."\n";
$headers .= 'Content-Type: multipart/mixed;boundary="----------'.$uniqid.'"'."\n";
$headers .= '------------'.$uniqid."\n";
$headers .= 'Content-type: text/'.$type.';charset='.$charset.''."\n";
$headers .= 'Content-transfer-encoding: 7bit';
mail($to, $subject, $message, $headers);
我建议使用PHP\u EOL而不是\r\n或\n,因为换行符将由您的环境决定。。。
$headers = 'MIME-Version: 1.0' . PHP_EOL;
希望这能最终解决你的问题!