I had contacted Digital Ocean about my gmail server. They said I must add the record on the domain side.
I had add SPF google and the domain IP is my server IP.
But I failed to send the gmail from my hosting server.
"v=spf1 ip4:128.199.69.30 include:_spf.google.com -all"
I’m using nodeJS to test email function:
var transporter = nodemailer.createTransport({
host: 'smtp.gmail.com',
port: 587,
secure: false, // secure:true for port 465, secure:false for port 587
auth: {
user: mConfig.sender_email, // Your email id
pass: mConfig.sender_password // Your password
}
});
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Click below to sign up and get $100 of credit to try our products over 60 days!
Hello,
The SPF record looks correct. Also you need to make sure that port 587 is open on your droplet for outgoing TCP connections. If you are using UFW you could do that with this command:
If this is still not working, can you share the error that you are getting here?
Regards, Bobby