I have implemented a mailing system in Laravel which send mails to the users. When tried from localhost, it is sending emails to both Gmail and outlook, but when I moved the code to production only Gmail accounts are receiving the mails.
.env
MAIL_DRIVER="smtp"
MAIL_HOST="smtp.gmail.com"
MAIL_PORT="587"
MAIL_ENCRYPTION="tls"