v4.4.2
node -v to see it, eg v5.5.0)v7.6.0
Ubuntu server 14.04
let transporter = nodemailer.createTransport({
host: 'SSL0.OVH.NET',
port: 465,
secure: true,
auth: {
user: "[email protected]",
pass: "mailpassword"
}
});
Problem:
Sending email to 2 different email address work
Sending email to 2 gmail email address work too
But sending email to only 1 gmail email address don't work, i receive any error, but the mail is never received
Error:
{ accepted: [ '[email protected]' ],
rejected: [],
envelopeTime: 1163,
messageTime: 95,
messageSize: 3776,
response: '250 2.0.0 Ok: queued as 229508007E',
envelope:
{ from: '[email protected]',
to: [ '[email protected]' ] },
messageId: '<[email protected]>' }
The server responds that message was accepted for delivery. What happens next with it is out of hands for Nodemailer.
This is maybe a problem between nodemailer and Gmail but not a problem with gmail and not with my mail address because it work with emailjs and old version of nodemailer.
Then i think it's a problem of nodemailer, and this is why i made a issue here and not on the support of Gmail