Nodemailer works fine when sending to email addresses on multiple different Domains. But when im sending a mail to a gmail adress, Gmail dont receive this mail.
what i have to Change?
const transporter = nodemailer.createTranspor({
host: 'test.de',
port: 25,
secure: false,
auth: {
user: 'default.smtp@test.de',
pass: 'test'
}
})