1.0.10 • Published 6 years ago

sendgrid-nodejs-custom v1.0.10

Weekly downloads
1
License
ISC
Repository
-
Last release
6 years ago

Sendgrid NodeJS Custom

This library allows you to quickly and easily use the Sendgrid API via Node.js.

Getting Started

Installing

The following recommended installation requires npm. If you are unfamiliar with npm, see the npm docs.

npm install --save sendgrid-nodejs-custom

Dependencies

  • axios - Promise based HTTP client for the browser and node.js

Quick Start

Sending a Single Email to a Single Recipient

const sendgrid = require('sendgrid-nodejs-custom');

const mailOptions = {
    sendgrid_key: SENDGRID_KEY,
    from_email: FROM_EMAIL,
    from_name: FROM_NAME,
    to: TO_EMAIL
};

mailOptions.subject = SUBJECT;
mailOptions.content = CONTENT;
sendgrid.send_via_sendgrid(mailOptions).then(response => {
    console.log(response);
    console.log('New welcome email sent to:', email);
});

Sending a Single Email to a Single Recipient With a CC

const sendgrid = require('sendgrid-nodejs-custom');

const mailOptions = {
    sendgrid_key: SENDGRID_KEY,
    from_email: FROM_EMAIL,
    from_name: FROM_NAME,
    to: TO_EMAIL
    cc: TO_CC
};

mailOptions.subject = SUBJECT;
mailOptions.content = CONTENT;
sendgrid.send_via_sendgrid(mailOptions).then(response => {
    console.log(response);
    console.log('New welcome email sent to:', email);
});

Sending a Single Email to a Single Recipient With a CC and a BCC

const sendgrid = require('sendgrid-nodejs-custom');

const mailOptions = {
    sendgrid_key: SENDGRID_KEY,
    from_email: FROM_EMAIL,
    from_name: FROM_NAME,
    to: TO_EMAIL,
    cc: TO_CC,
    bcc: TO_BCC
};

mailOptions.subject = SUBJECT;
mailOptions.content = CONTENT;
sendgrid.send_via_sendgrid(mailOptions).then(response => {
    console.log(response);
    console.log('New welcome email sent to:', email);
});

Sending the same Email to Multiple Recipients

const sendgrid = require('sendgrid-nodejs-custom');

const mailOptions = {
    sendgrid_key: SENDGRID_KEY,
    from_email: FROM_EMAIL,
    from_name: FROM_NAME,
    to: [TO_EMAIL1, TO_EMAIL2, ...]
};

mailOptions.subject = SUBJECT;
mailOptions.content = CONTENT;
sendgrid.send_via_sendgrid(mailOptions).then(response => {
    console.log(response);
    console.log('New welcome email sent to:', email);
});

Sending a Single Email to a Single Recipient With Multiple CCs/BCCs

const sendgrid = require('sendgrid-nodejs-custom');

const mailOptions = {
    sendgrid_key: SENDGRID_KEY,
    from_email: FROM_EMAIL,
    from_name: FROM_NAME,
    to: TO_EMAIL,
    cc: [TO_CC1, TO_CC2, ...],
    bcc: [TO_BCC1, TO_BCC2, ...]
};

mailOptions.subject = SUBJECT;
mailOptions.content = CONTENT;
sendgrid.send_via_sendgrid(mailOptions).then(response => {
    console.log(response);
    console.log('New welcome email sent to:', email);
});
1.0.10

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago