本文介绍了SwiftMailer连接建立错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有发送邮件的问题。我使用SwiftMailer 5.1.0和帐户在gmail,smtp端口465和openssl是启用,但我有这个错误:

  Serwer :smtp.gmail.com:465 ssl 
从:BizIn - 系统mailowy< [email protected]&
To:[email protected]
邮件调试:无法使用主机smtp.gmail.com建立连接[#0]

在我的本地主机上,一切都是okey和邮件发送。但是在serwer我有错误。



本地主机在版本5.4.31中使用PHP,但在服务器上为5.6.0。

解决方案

这个修复程序为我解决了这个问题:



@ if-joerch
if-joerch在2014年11月3日发表评论


I have problem with sending mails. I using SwiftMailer 5.1.0 and account on gmail, smtp port 465 and openssl is enable, but I have this error:

Serwer: smtp.gmail.com:465 ssl
From: BizIn - system mailowy <[email protected]>
To: [email protected]
Mail debug: Connection could not be established with host smtp.gmail.com [ #0] 

At my localhost everything is okey and mails are send. But on serwer I have error.

Localhost using PHP in version 5.4.31, but at server is 5.6.0.

解决方案

The fix here solved it for me: https://github.com/swiftmailer/swiftmailer/issues/544

@if-joerchif-joerch commented on Nov 3, 2014

这篇关于SwiftMailer连接建立错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-16 06:28