Вот предварительное условие для использования сетки отправки в Azure:
1) Node.js версии 6, 7 или 8
2) Отправка учетной записи сетки
Можете ли выпожалуйста, убедитесь, что вы запрашивали версию для узла.и затем попробуйте этот код.
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);
надеюсь, это поможет.