我正在尝试使用mailtrap通过Laravel发送电子邮件以在本地Homestead服务器中进行测试。

防火墙未显示任何阻止端口2525的规则。

邮件驱动程序配置:

MAIL_DRIVER=smtp
MAIL_HOST=mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=$USERNAME
MAIL_PASSWORD=$PASSWORD
MAIL_ENCRYPTION=null

返回错误:
Fatal error: Uncaught exception 'Swift_TransportException' with message 'Connection could not be established with host mailtrap.io [Connection timed out #110]'

最佳答案

您的主机名无效。应该是smtp.mailtrap.io。更多信息在这里:https://mailtrap.io/blog/2018-03-09-why-mailtrap-updated-its-smtp-host

P.S. Mailtrap没有静态IP地址,因此使用IPv4的方式不会花费那么长的时间。

10-06 11:34