我确实遇到mailcatcher
的问题。
我的php.ini:
[mail function]
; XAMPP: Comment out this if you want to work with an SMTP Server like Mercury
SMTP = localhost
smtp_port = 1025
mail.php:
if( mail('test@example.com', 'My Subject', 'test' 'testexample.com') ) {
echo "Mail Sent!";
} else {
echo "not working";
}
我刚读了很多文章,StackOverflow关于这个问题的问题,但我找不到任何对我有用的文章。
在我的其他项目中,我使用composer
和swiftmailer
。 swiftmailer
mailcatcher
抓住了我的电子邮件,但在没有swiftmailer
mailcatcher
的项目中无效。也许有人确实有同样的问题?