nodemailer-sendgrid-transport
nodemailer-sendgrid-transport copied to clipboard
Can we use templates that are not hosted on Sendgrid with this?
Templates are part of the Nodemailer package but it doesn't seem to work in conjunction with the SendGrid transporter. Any way to send email templates with context?
var templates = {
text: 'Hello {{username}}!'
};
var context = {
username: 'User Name'
};