@peccul is peccu

(love peccu '(emacs lisp cat outdoor bicycle mac linux coffee))

2017-06-27から1日間の記事一覧

Node.jsでメールを送る。mailコマンドやSMTPサーバー不要。

github.com npm i sendmail const sendmail = require('sendmail')(); sendmail({ from: 'from@example.com', to: 'to@exampl.com', subject: '件名も化けなかった', text: 'これは本文' }, function(err, reply) { console.log(err && err.stack); console.…