Nodemailer: Can't send mail to only 1 address

Created on 7 Feb 2018  路  2Comments  路  Source: nodemailer/nodemailer

2. Is this related to Gmail / Hotmail / Yahoo?

  • [X] Yes

6. Nodemailer version you are having problems with (eg. v1.3.7)

v4.4.2

7. Node.js version you are using (run node -v to see it, eg v5.5.0)

v7.6.0

8. Your operating system (eg. Windows 10, Ubuntu 14.04 etc.)

Ubuntu server 14.04

9. Nodemailer configuration settings (if applicable)

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]>' }

All 2 comments

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

Was this page helpful?
0 / 5 - 0 ratings

Related issues

pranavpunjabi picture pranavpunjabi  路  3Comments

mohammedSlimani picture mohammedSlimani  路  4Comments

curlynux picture curlynux  路  5Comments

uiteoi picture uiteoi  路  5Comments

JYC-99 picture JYC-99  路  6Comments