我已经安装sendmail
在我的 Apache 服务器(Ubuntu)上
除了在使用 php 时没有发送电子邮件外,一切似乎都可以找到mail();
我在 Apache 错误日志中收到一条错误消息:
/usr/sbin/sendmail: 找不到收件人
这是我使用该功能的方式:
$user_email = "myemail@gmail.com";
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'To: ' . $user_email . "\r\n";
$headers .= 'From: Mydomain <do-not-reply@mydomain.com>' . "\r\n";
mail($user_email,"subject","message",$headers);