我试图在本地主机中发送邮件。
但工作。我改变了 php.ini
[mail function]
SMTP=SMTP.gmail.com
smtp_port =587
sendmail_from =postmaster@testmail.com
sendmail_path = "C: \xampp\sendmail.exe\" -t"
这是我的 php 邮件功能
public function sendMail($to,$subject,$from=null,$headers = null)
{
if($headers == null) {
$headers = $this->setMimes();
}
$headers .= $this->setFrom($from);
return mail($to,$subject,$this->getMessage(),$headers);
}
这封邮件没有发送。