node.js + express + nodemailer
node.jsでmail機能を実装するには…
node.jsでmail機能を実装するにあたってnpmのnodemailerというパッケージを使っていきます!
$ express app --view=ejs
$ cd app
$ npm install
ルートフォルダーにcontact.jsファイルを作って下記の記述をします
"use strict";
const nodemailer = require("nodemailer");
async function main() {
let transporter = nodemailer.createTransport({
ignoreTLS:true,
port: 1025,
secure: false, // true for 465, false for other ports
});
let info = await transporter.sendMail({
from: '"Fred Foo 👻" <[email protected]>', // sender address
to: " [email protected]", // list of receivers
subject: "成功!!!!", // Subject line
text: "サンプルテキストです", // plain text body
});
console.log("送られたメッセージ: %s", info.messageId);
}
main().catch(console.error);
参考)https://nodemailer.com/about/
メールが送信されているかをチェックするためにmailcatcherを使います
mailcatcherを使うためのパッケージをインストールして起動してみます
$ npm install -g maildev
$ maildev
$ node contact.js
localhostの1080ポートが起動しているのでhttp://127.0.0.1:1080 にアクセスすると
ポート1025でメールを受け取ることができました!
あとがき
mail機能を実装するためにはamazon SESでもできるようです
今回nodemailerを使ってみましたが、圧倒的にメールサーバについての理解が乏しいと実感しました(´;ω;`)
mailについて学習し、また記事を書きます!
Author And Source
この問題について(node.js + express + nodemailer), 我々は、より多くの情報をここで見つけました https://qiita.com/shimizuyuta/items/cc2ad38ceb6b0b3fc53f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .