nodemailer-sendgrid-transport icon indicating copy to clipboard operation
nodemailer-sendgrid-transport copied to clipboard

Can we use templates that are not hosted on Sendgrid with this?

Open stephenhuh opened this issue 8 years ago • 0 comments

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

stephenhuh avatar Mar 18 '16 05:03 stephenhuh