我确实有问题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
邮件.php:
if( mail('test@example.com', 'My Subject', 'test' 'testexample.com') ) {
echo "Mail Sent!";
} else {
echo "not working";
}
我刚刚阅读了很多文章,关于这个问题的 StackOverflow 问题,但我没有找到任何对我有用的东西。
在我的另一个项目中,我使用composer
和swiftmailer
. Withswiftmailer
mailcatcher
捕获了我的电子邮件,但在没有的项目swiftmailer
mailcatcher
中不起作用。也许有人确实有同样的问题?