Reputation: 806
I trying to send email to my gmail
, but I cannot see the email in my gmail
. I also tried to send the email to my hotmail
, it is working when send to hotmail
.
How do I fix this problem?
Thanks
Upvotes: 2
Views: 6196
Reputation: 188
You can use Gmail's SMTP
using Postman SMTP plugin, it works for all..
Upvotes: 0
Reputation: 1001
Today, email service providers are very string with spam. I think your mail that you sended with wordpress is in your Gmail spam
folder. You're maybe sending it from localhost
or something like that. So Gmail put it by default to the spam folder. You can recover that by mapping a public domain name on your smtp
server or like @raman-kuman's answer, you can use a plugin like Postman SMTP plugin to configure an email service like Gmail or Hotmail. If you use another famous email service, you can maybe find the settings here.
I would highly recommend you to use a personal mail server, so you can personalize your email like:
[email protected]
for a notification[email protected]
for contactIt's looks better than [email protected]
.
Upvotes: 2
Reputation: 2940
It's most likely to do with :
1.) Your SMTP relaying settings within Wordpress. Check how it's configured and post a new question if you're struggling to get them to work. If your using a SMTP relay service then confirm these credentials are correct.
2.) The email address you are sending out as. If your sending as GMAIL or Hotmail e.g. [email protected] from Wordpress using the PHP to send mail then it maybe be sending the mail from the IP address of your webserver which will not be part of the Hotmail/Gmails SPF record so recipient servers would block you on connection.
Upvotes: 1
Reputation: 184
Make sure your email address that is sending from WordPress is the same as your domain name - something like [email protected], otherwise use the Postman plugin, it will take a bit of configuration but you will be able to send to anywhere.
Upvotes: 0