2015-04-03 88 views
1

我剛剛移動了我的Laravel 4.2。應用程序從WAMP到IIS Web服務器,並且電子郵件功能剛剛停止工作 - 不知道爲什麼。Laravel 4.2。發送電子郵件,遠程SMTP,Windows Server R2,IIS

我從託管服務使用外部SMTP服務器,所以我沒有想到它會導致任何問題。

我的設置:

return array(

/* 
|-------------------------------------------------------------------------- 
| Mail Driver 
|-------------------------------------------------------------------------- 
| 
| Laravel supports both SMTP and PHP's "mail" function as drivers for the 
| sending of e-mail. You may specify which one you're using throughout 
| your application here. By default, Laravel is setup for SMTP mail. 
| 
| Supported: "smtp", "mail", "sendmail", "mailgun", "mandrill", "log" 
| 
*/ 

'driver' => 'smtp', 

/* 
|-------------------------------------------------------------------------- 
| SMTP Host Address 
|-------------------------------------------------------------------------- 
| 
| Here you may provide the host address of the SMTP server used by your 
| applications. A default option is provided that is compatible with 
| the Mailgun mail service which will provide reliable deliveries. 
| 
*/ 

'host' => 'smtp.*my-host*.se', 

/* 
|-------------------------------------------------------------------------- 
| SMTP Host Port 
|-------------------------------------------------------------------------- 
| 
| This is the SMTP port used by your application to deliver e-mails to 
| users of the application. Like the host we have set this value to 
| stay compatible with the Mailgun e-mail application by default. 
| 
*/ 

'port' => 587, 

/* 
|-------------------------------------------------------------------------- 
| Global "From" Address 
|-------------------------------------------------------------------------- 
| 
| You may wish for all e-mails sent by your application to be sent from 
| the same address. Here, you may specify a name and address that is 
| used globally for all e-mails that are sent by your application. 
| 
*/ 

'from' => array('address' => "[email protected]", 'name' => "Example name"), 

/* 
|-------------------------------------------------------------------------- 
| E-Mail Encryption Protocol 
|-------------------------------------------------------------------------- 
| 
| Here you may specify the encryption protocol that should be used when 
| the application send e-mail messages. A sensible default using the 
| transport layer security protocol should provide great security. 
| 
*/ 

'encryption' => 'tls', 

/* 
|-------------------------------------------------------------------------- 
| SMTP Server Username 
|-------------------------------------------------------------------------- 
| 
| If your SMTP server requires a username for authentication, you should 
| set it here. This will get used to authenticate with your server on 
| connection. You may also set the "password" value below this one. 
| 
*/ 

'username' => "[email protected]", 

/* 
|-------------------------------------------------------------------------- 
| SMTP Server Password 
|-------------------------------------------------------------------------- 
| 
| Here you may set the password required by your SMTP server to send out 
| messages from your application. This will be given to the server on 
| connection so that the application will be able to send messages. 
| 
*/ 

'password' => "********", 

/* 
|-------------------------------------------------------------------------- 
| Sendmail System Path 
|-------------------------------------------------------------------------- 
| 
| When using the "sendmail" driver to send e-mails, we will need to know 
| the path to where Sendmail lives on this server. A default path has 
| been provided here, which will work well on most of your systems. 
| 
*/ 

'sendmail' => '/usr/sbin/sendmail -bs', 

/* 
|-------------------------------------------------------------------------- 
| Mail "Pretend" 
|-------------------------------------------------------------------------- 
| 
| When this option is enabled, e-mail will not actually be sent over the 
| web and will instead be written to your application's logs files so 
| you may inspect the message. This is great for local development. 
| 
*/ 

'pretend' => false, 

我改變上述AUTH屬性。

我從Laravel得到的錯誤。

{"error":{"type":"ErrorException","message":"stream_socket_enable_crypto(): Peer certificate CN=`*.my-host-name.se' did not match expected CN=`smtp.my-host.se'","file":"D:\\Dir1\\Dir2\\vendor\\swiftmailer\\swiftmailer\\lib\\classes\\Swift\\Transport\\StreamBuffer.php","line":95}} 

任何想法?我應該可以安裝本地SMTP服務嗎?

回答

4

它看起來像您的服務器和smtp電子郵件服務器之間的SSL證書問題。

我相信這個問題是關係到這一點:https://github.com/swiftmailer/swiftmailer/issues/544

有一個拉要求在這裏你可以試試,看看是否能解決問題:https://github.com/swiftmailer/swiftmailer/issues/571

+1

謝謝! =) 從用戶「if-joerch」複製到此處:https://github.com/swiftmailer/swiftmailer/issues/544 「如果您使用的是PHP 5.6,則會出現錯誤,因爲」SSL上下文選項「用於swiftmailer中的流上下文IN PHP 5.6 verify_peer和verify_peer_name默認設置爲TRUE,因此PHP會檢查SSL證書 您可以通過修改StreamBuffer.php中的函數「_establishSocketConnection」來禁用SSL檢查 添加這些stream_socket_client命令之前的行數: $ options ['ssl'] ['verify_peer'] = FALSE; $ options ['ssl'] ['verify_peer_name'] = FALSE;「 – Tibbelit 2015-04-04 16:22:56

+0

我有使用Laravel Lumen框架的相同問題。剛剛添加了Tibbelit通知的這兩行,它的功能就像一個魅力! – Bizarro 2015-05-07 13:21:48