1.1.0 • Published 6 years ago

sendgrid-liquid-mailer v1.1.0

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

Sendgrid Liquid Mailer

A quick way to send an email (via Sendgrid) rendered from a Liquid template.

Usage

const SendgridLiquidMailer = require('sendgrid-liquid-mailer');

const mailer = new SendgridLiquidMailer(SENDGRID_API_KEY);
const email = {
    bodyTemplate: `Hello, {{name}}`,
    data: {name: 'world'},
    fromAddress: 'from@example.com',
    fromName: 'Example Sender',
    toAddress: 'recipient@example.com',
    bccAddress: 'bcc@example.com',
    toName: 'A Recipient',
    subjectTemplate: 'You are a winner.'
};

const result = mailer.sendLiquidEmail(email);