Вы можете использовать sendgrid для отправки электронного письма.Это более надежно, на мой взгляд.Вам нужно будет создать учетную запись sendgrid, чтобы получить ключ API.Тогда вы можете сделать что-то вроде этого:
const sgMail = require('@sendgrid/mail');
sgMail.setApiKey(process.env.SENDGRID_API_KEY);
const msg = {
to: 'test@example.com',
from: 'test@example.com',
subject: 'Sending with SendGrid is Fun',
text: 'and easy to do anywhere, even with Node.js',
html: '<strong>and easy to do anywhere, even with Node.js</strong>',
};
sgMail.send(msg);