gpt4 book ai didi

laravel - 预期响应代码 235 但得到代码 535 laravel 使用 office365 smtp 发送电子邮件

转载 作者:行者123 更新时间:2023-12-02 11:26:15 24 4
gpt4 key购买 nike

我想在 laravel 应用程序中使用我的 office365 smtp 凭据发送电子邮件。我在我的 .env 文件中对电子邮件设置进行了如下更改:

MAIL_DRIVER=smtp
MAIL_HOST=smtp.office365.com
MAIL_PORT=587
MAIL_USERNAME=info@***.com
MAIL_PASSWORD=*******
MAIL_ENCRYPTION=tls

当我尝试发送电子邮件时,我收到了类似的错误
Failed to authenticate on SMTP server with username \"info@omoyyc.com\" using 2 possible authenticators. Authenticator LOGIN returned Swift_TransportException: Expected response code 235 but got code \"535\", with message \"535 Incorrect authentication data\r\n\"

我的电子邮件发送代码如下
Mail::send(array(), array(), function ($m) use ($templatecontent) {
$m->from('customerservice@****.com', 'TEST');
$m->to('test@gmail.com', 'Test')
->subject($templatecontent['subject'])
->setBody($templatecontent['content'], 'text/html');
});

谁能指导我是什么问题以及如何解决这个问题?

最佳答案

我不知道原因是否与 OP 相同,但我遇到了同样的错误。我通过用双引号括起密码来修复它。

我假设当密码包含特殊字符时解析失败。

关于laravel - 预期响应代码 235 但得到代码 535 laravel 使用 office365 smtp 发送电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53298872/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com