Node.js

SendGrid Node.jsライブラリの利用を推奨します。ライブラリのドキュメントについてはGithubを参照してください。

このライブラリはV2 APIをサポートしませんが、旧バージョンのライブラリを利用することでV2 APIを利用可能です。詳細については Continue Using V2 in Node.jsを参照してください。

SendGrid Node.jsライブラリの利用

1
2
3
4
5
6
7
8
9
10
11
// using SendGrid's Node.js Library
// https://github.com/sendgrid/sendgrid-nodejs
var sendgrid = require("sendgrid")("SENDGRID_APIKEY");
var email = new sendgrid.Email();

email.addTo("test@sendgrid.com");
email.setFrom("you@youremail.com");
email.setSubject("Sending with SendGrid is Fun");
email.setHtml("and easy to do anywhere, even with Node.js");

sendgrid.send(email);