2011-07-26から1日間の記事一覧

SendGridのSMTP API

メモ。 Getting Started - SendGrid Documentation | SendGrid var email = require("mailer"); email.send({ host : ..., port : ..., to : "to@example.com", from : "from@example.com", subject : "タイトル", body: "Hi, <name>" authentication : "login", u</name>…

nodeのmailerモジュールのtemplate

なんかnodemailerとかmailerとか名前が似てるけどmailerのやつ。 GitHub - Marak/node_mailer: ## Project deprecated, see READMEtemplateを指定するとテンプレートエンジンにmustache.jsを使ってレンダリングしてくれるんだけど、このとき、レンダリング結…