很长一段时间后,我仍然无法通过 mailcatcher 接收邮件。邮件已发送,但未发送。我正在使用 xampp,这是我在 php.ini 中的设置:
SMTP = localhost
smtp_port = 1025
sendmail_path = /usr/bin/env catchmail -f some@from.address
和 PHP
$message = "Line 1\r\nLine 2\r\nLine 3";
$message = wordwrap($message, 70, "\r\n");
$sent = mail('caffeinated@example.com', 'My Subject', $message,'webmaster@example.com');
if($sent) {
echo "<h1>Sent...</h1>";
}
更新
我正在 Windows 操作系统上测试这个