1.0.3 • Published 2 years ago

sendgrid-email v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

sendgrid-email

Send email with SendGrid.

Install

$ npm install sendgrid-email

Usage

const sendgrid = require('sendgrid-email');

(async function() {

    sendgrid.configure({
        apiKey: 'your-sendgrid-api-key'
    });

    let to = { email: 'jack@example.com', name: 'Jack Smith' };
    let from = { email: 'jill@example.com', name: 'Jill Smith '};
    let subject = 'Hello there!';
    let text = 'Sent with sendgrid!';

    await sendgrid.send({ to, from, subject, text });
})();

License

MIT license; see LICENSE.

1.0.2

2 years ago

1.0.3

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago