localhostでメールを送信しようとしました。
しかし働いています。私は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);
}
このメールは送信されません。