ホームページ > 記事 > ウェブフロントエンド > node.js は、nodemailer を使用して電子メールを送信します。
1. ノードメーラーをインストールします
//SMTP 接続プールを開きます
var smtpTransport = nodemailer.createTransport("SMTP",{
host: "smtp.qq.com", // Host
secureConnection: true, // SSL を使用します
ポート: 465、// SMTP ポート
認証: {
ユーザー: "xxxxxxxx@qq.com"、// アカウント番号
パス: "xxxxxxxx" // パスワード
}
});
//メールの内容を設定します
var mailOptions = {
from: "Fred Foo
宛先: "2838890xx@qq.com, minimixx @126.com", // 受信者リスト
件名: "Hello world", // タイトル
html: "訪問してくれてありがとう! " // htmlコンテンツ
}
//メールを送信します
smtpTransport.sendMail(mailOptions, function(error, response){
if(error){
console.log(error);
}else{
console.log("送信されたメッセージ: " response.message);
}
smtpTransport.close() // 役に立たない場合は、接続プールを閉じます
});