Swiftmailer电子邮件问题

时间:2018-12-17 15:38:42

标签: symfony-2.3

嗨,我正在使用swift mailer在symfony2中发送电子邮件。

//app/config.yml
 # Swiftmailer Configuration
  swiftmailer:
   transport:  "%mailer_transport%"       
    host:       "%mailer_host%"
   username:   "%mailer_user%"
   password:   "%mailer_password%"
   port:       "%mailer_port%"
   encryption: "%mailer_encryption%"
   spool:     { type: memory }

和app / paremetrs.yml

mailer_transport: smtp   
mailer_host: smtp.office365.com
mailer_user: notify@location.com
mailer_password: test
mailer_port: 587
mailer_encryption: tls

但是我一次又一次地遇到错误。

app.ERROR: Exception occurred while flushing email queue: Expected response code 250 but got code "", with message "" [] []

任何人都可以帮助我

预先感谢

1 个答案:

答案 0 :(得分:0)

“ SMTP错误554是比较模糊的错误代码之一,但通常是由于接收服务器看到不喜欢的“发件人”或“发件人”标头中的某些内容引起的。这可能是由识别您的计算机的垃圾邮件陷阱引起的作为中继,或者作为不信任的机器从您的域发送邮件。” -STMP error 554