我面前有一个旧项目。应用程序生成的电子邮件不会到达。但如果我使用以下命令,他们就会到达。
php bin/console swiftmailer:email:send -vvv --from=example@example.org --to=example@example.org --subject=mailTest --body=testSMTP --env=prod
控制台和应用程序应使用相同的参数。
mailer_transport: smtp
mailer_host: MYSUBDOMAIN.MYHOSTER.net
mailer_port: 587
mailer_user: myexample@exampleemail.org
mailer_password: password
mailer_auth_mode: login
mailer_encryption: ssl
应用程序是使用Symfony 3.1.4和Swiftmailer 2.3开发的。
请你给我一个建议吗?
感谢。