Popescu-Andrei's avatar

Namecheap private email SMTP

Anyone else tried to use a domain email on privateemail (namecheap emails) with laravel? I'm trying to figure out what am i missing?

MAIL_DRIVER=smtp MAIL_HOST=mail.privateemail.com MAIL_PORT=587 [email protected] MAIL_PASSWORD=********** MAIL_ENCRYPTION=tls

This is my configuration. No error, but no email in my [email protected] outgoing emails nor on the target of the email.

Thanks in advance.

0 likes
3 replies
mbarham's avatar

I have the same issue with namecheap email, there were a missing MAIL_FROM_ADDRESS, should be the same as MAIL_USERNAME; here is my full conf ################################# MAIL_DRIVER=smtp MAIL_HOST=mail.privateemail.com MAIL_PORT=465 [email protected] MAIL_PASSWORD=PASSWORD MAIL_ENCRYPTION=ssl MAIL_FROM_NAME="Wealth Cicrle" [email protected] ########################################

1 like
Syrine123's avatar

@alaminrahman I had the same issue and resolve iy like that : MEMCACHED_HOST=0.0.0.0 REDIS_HOST=0.0.0.0 REDIS_PASSWORD=null REDIS_PORT=6379 MAIL_MAILER=smtp MAIL_HOST=smtp.gmail.com MAIL_PORT=587 MAIL_USERNAME=//you email MAIL_PASSWORD=******(generated automatically when you configure your account as smtp) MAIL_ENCRYPTION=tls MAIL_FROM_ADDRESS=//YOUR EMAIL HERE (should be configured as an smtp account) Mail_FROM_NAME="${APP_NAME}"

1 like

Please or to participate in this conversation.