Email 拉威尔4.2。发送电子邮件、远程SMTP、Windows Server R2、IIS

Email 拉威尔4.2。发送电子邮件、远程SMTP、Windows Server R2、IIS,email,iis,laravel-4,smtp,windows-server,Email,Iis,Laravel 4,Smtp,Windows Server,我刚把我的Laravel 4.2移动了。应用程序从WAMP进入IIS web服务器,电子邮件功能刚刚停止工作-不知道为什么 我使用托管服务的外部SMTP服务器,所以我认为这不会导致任何问题 我的设置: return array( /* |-------------------------------------------------------------------------- | Mail Driver |----------------------------------------

我刚把我的Laravel 4.2移动了。应用程序从WAMP进入IIS web服务器,电子邮件功能刚刚停止工作-不知道为什么

我使用托管服务的外部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' => "example@mail.com", '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' => "user@host.se",

/*
|--------------------------------------------------------------------------
| 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属性

我从拉威尔那里得到的错误

{"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服务?

您的服务器和SMTP电子邮件服务器之间似乎存在SSL证书问题

我认为问题与此有关:


这里有一个拉取请求,您可以尝试看看是否解决了问题:

看起来您的服务器和smtp电子邮件服务器之间存在SSL证书问题

我认为问题与此有关:


这里有一个拉取请求,您可以尝试一下,看看这是否解决了问题:

谢谢!=)复制自用户“if joerch”此处:“如果您使用的是PHP 5.6,则会发生错误,因为swiftmailer中的流上下文使用了“SSL上下文选项”。在PHP 5.6中,verify_peer和verify_peer_name默认设置为TRUE,因此PHP会检查SSL证书。您可以通过修改函数禁用SSL检查”_StreamBuffer.php中的“establishSocketConnection”。在stream_socket_客户端命令之前添加以下行:$options['ssl']['verify_peer']=FALSE;$options['ssl']['verify_peer_name']=FALSE;“我在使用Laravel Lumen框架时遇到了同样的问题。刚刚添加了Tibbelit通知的那两行,效果非常好!谢谢!=)复制自用户“if joerch”此处:“如果您使用的是PHP 5.6,则会发生错误,因为swiftmailer中的流上下文使用了“SSL上下文选项”。在PHP 5.6中,verify_peer和verify_peer_name默认设置为TRUE,因此PHP会检查SSL证书。您可以通过修改函数禁用SSL检查”_StreamBuffer.php中的“establishSocketConnection”。在stream_socket_客户端命令之前添加以下行:$options['ssl']['verify_peer']=FALSE;$options['ssl']['verify_peer_name']=FALSE;“我在使用Laravel Lumen框架时遇到了同样的问题。刚刚添加了Tibbelit通知的那两行,效果非常好!