Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
608 views
in Technique[技术] by (71.8m points)

email - Is there any Laravel package for sending mail with office 365 mail?

I ve been in a idea of moving to office 365.

I have to send emails to users using laravel app. The problem is, I could not be able to use SMTP for some reason.

So i planned to use a package just like aws. And fortunately i found one.

https://github.com/motze92/office365-mail

The problem with this package is, there is no error from the mailer, but instead, I have a problem in delivering the messages to the recipient.

So i searched for other packages, but i could not find any.

Please help me by suggesting me a package or fixing the issues with SMTP or this package.

Thanks in advance.

question from:https://stackoverflow.com/questions/65859487/is-there-any-laravel-package-for-sending-mail-with-office-365-mail

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

there's no need to use package.. You just need to update your .env

MAIL_DRIVER=smtp
MAIL_HOST=OFFICE365_SMTP
MAIL_PORT=587
MAIL_USERNAME=YOUR_OFFICE_365_USERNAME
MAIL_PASSWORD=YOUR_OFFICE_365_PASSWORD

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...