简体   繁体   English

无法与主机 smtp.mailtrap.io:stream_socket_client() 建立连接:使用 SENDGRID 发送邮件时

[英]Connection could not be established with host smtp.mailtrap.io :stream_socket_client(): when using SENDGRID to send mail

I am using send grid mail to send mail in Laravel but when i try to send the email i get following error:我正在使用发送网格邮件在 Laravel 中发送邮件但是当我尝试发送电子邮件时出现以下错误:

"message": "Connection could not be established with host smtp.mailtrap.io:stream_socket_client(): unable to connect to smtp.mailtrap.io:2525 (Connection refused)", "exception": "Swift_TransportException", “消息”:“无法与主机 smtp.mailtrap.io:stream_socket_client() 建立连接:无法连接到 smtp.mailtrap.io:2525(连接被拒绝)”,“异常”:“Swift_TransportException”,

env file:环境文件:

MAIL_DRIVER=smtp
MAIL_HOST=smtp.sendgrid.net
MAIL_PORT=587
MAIL_USERNAME=XXXX
MAIL_PASSWORD=XXXX
MAIL_ENCRYPTION=tls
MAIL_FROM_ADDRESS = XXXX
MAIL_FROM_NAME = XXXXX

Mail.php邮件.php

<?php

return [

    /*
    |--------------------------------------------------------------------------
    | 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", "sendmail", "mailgun", "mandrill", "ses",
    |            "sparkpost", "postmark", "log", "array"
    |
    */

    'driver' => env('MAIL_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' => env('MAIL_HOST', 'smtp.mailgun.org'), 

    /*
    |--------------------------------------------------------------------------
    | 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' => env('MAIL_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' => [
        'address' => env('MAIL_FROM_ADDRESS'),
        'name' => env('MAIL_FROM_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' => env('MAIL_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' => env('MAIL_USERNAME'),

    'password' => env('MAIL_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',

    /*
    |--------------------------------------------------------------------------
    | Markdown Mail Settings
    |--------------------------------------------------------------------------
    |
    | If you are using Markdown based email rendering, you may configure your
    | theme and component paths here, allowing you to customize the design
    | of the emails. Or, you may simply stick with the Laravel defaults!
    |
    */

    'markdown' => [
        'theme' => 'default',

        'paths' => [
            resource_path('views/vendor/mail'),
        ],
    ],

    /*
    |--------------------------------------------------------------------------
    | Log Channel
    |--------------------------------------------------------------------------
    |
    | If you are using the "log" driver, you may specify the logging channel
    | if you prefer to keep mail messages separate from other log entries
    | for simpler reading. Otherwise, the default channel will be used.
    |
    */

    'log_channel' => env('MAIL_LOG_CHANNEL'),

];

I have run following commands also but the same issue:我也运行了以下命令但同样的问题:

php artisan config:clear 
php artisan cache:clear 

Please help to solve out my issue.请帮助解决我的问题。

I had the same problem and spent countless hours looking for an answer.我遇到了同样的问题,花了无数个小时寻找答案。 I hope that I can help the community of developers by sharing the solution to the swift_transportexception connection issue.我希望通过分享swift_transportexception连接问题的解决方案来帮助开发者社区。 Here it is...这里是...

Make the following adjustment to your.env file:对 your.env 文件进行以下调整:

MAIL_DRIVER=sendmail

MAIL_HOST=YOUR_DOMAIN.COM

MAIL_PORT=465

MAIL_USERNAME=YOUR_EMAIL@YOUR_DOMAIN.COM

MAIL_PASSWORD=YOUR_PASSWORD

MAIL_ENCRYPTION=ssl

MAIL_FROM_ADDRESS=YOUR_EMAIL@YOUR_DOMAIN.COM

MAIL_FROM_NAME="${APP_NAME}"

Make sure your DNS records is set to: MX - @ - mail.YOUR_DOMAIN.COM - Priority 0确保您的 DNS 记录设置为:MX - @ - mail.YOUR_DOMAIN.COM - 优先级 0

/** change the MAIL_ECRYPTION TO ssl instead of tls **/ /** 将 MAIL_ECRYPTION 更改为 ssl 而不是 tls **/

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 无法与主机 smtp.sendgrid.net:stream_socket_client() 建立连接:无法连接到 tcp://smtp.sendgrid.net:465 - Connection could not be established with host smtp.sendgrid.net :stream_socket_client(): unable to connect to tcp://smtp.sendgrid.net:465 SMTP 在 django 中使用 sendgrid 时出现数据错误 - SMTP Data Error when using sendgrid in django SendGrid - 如何在通过 SendGrid 发送邮件时验证 email 送达 - SendGrid - How to validate email delivery when mail is send via SendGrid NODE.JS - Client.network 套接字在建立安全 TLS 连接之前断开连接 - NODE JS - Client network socket disconnected before secure TLS connection was established Firebase 部署错误。 服务器错误。 Client.network 套接字在建立安全 TLS 连接之前断开连接 - Firebase deploy error. Server Error. Client network socket disconnected before secure TLS connection was established 无法在 Amazon EC2 实例中从 JBoss java 应用程序发送 SMTP email:无法将套接字转换为 TLS - Cannot send SMTP email from JBoss java app in Amazon EC2 instance: Could not convert socket to TLS Email 未使用 Sendgrid SMTP 交付 - Email is not Delivering using Sendgrid SMTP 如何通过 sendgrid - 节点发送邮件 - How to send mail via sendgrid - node 使用 sendgrid 发送邮件时凭据错误 - Wrong credentials in sending mail using sendgrid 无法在 SMTP 服务器上使用用户名“apikey”在 SendGrid 中使用 2 个可能的身份验证器进行身份验证 - Failed to authenticate on SMTP server with username "apikey" using 2 possible authenticators in SendGrid
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM