如何从Laravel中的Web邮件发送邮件

时间:2018-08-29 06:55:55

标签: php email laravel-5 cpanel webmail

我已成功使用Gmail帐户从应用程序发送电子邮件。

现在,我想从应用程序中使用Web电子邮件帐户发送电子邮件。

.envconfig/mail.php文件中进行更改后,我无法发送邮件并收到错误消息

  

local.ERROR:无法使用2个可能的验证者在用户名为“ info@sencare.com.bd”的SMTP服务器上进行验证

.env文件

MAIL_DRIVER=smtp
MAIL_HOST=sencare.com.bd
MAIL_PORT=587
MAIL_USERNAME=info@sencare.com.bd
MAIL_PASSWORD=&&Pass@2018&& //my webmail password, not application specific password like gmail
MAIL_ENCRYPTION=tls

.config/mail.php文件

'driver' => env('MAIL_DRIVER', 'smtp'),


'host' => env('MAIL_HOST', 'sencare.com.bd'),


'port' => env('MAIL_PORT', 587),


'from' => [
    'address' => 'info@sencare.com.bd', 
    'name' => 'Bacekend System',
],

'encryption' => env('MAIL_ENCRYPTION', 'tls'),

'username' => env('MAIL_USERNAME'),

'password' => env('MAIL_PASSWORD'),

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

0 个答案:

没有答案