メールを送信するプログラムを実装 続いて、メールを送信するプログラムを実装していきましょう。「mailgun-js」というモジュールをベースに、ラッパーモジュールを作ります。下記コマンドを実行してmailgun-jsをインストールしておきます。 var Mailgun = require('mailgun-js'); function Mailer(conf){ this.mailgunConf = { apiKey : conf.apiKey, domain : conf.domain }; this.mailData = { from : conf.from, to : conf.to, subject : conf.subject, ok_message : conf.ok_message, ng_message : conf.ng_message }; this.mailer =