发测试邮件或垃圾邮件node脚本
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | npm install nodemailer 执行后,指定目录下会出现node_modules模块,再相同目录下,创建main.js,js代码如下: var nodemailer = require( "nodemailer" ); var fs = require( 'fs' ); var file = fs.readFileSync(__dirname + '/test.html' , "utf8" ); // 这里修改下要读的页面文件名称 // 创建登陆所需配置 var smtpTransport = nodemailer.createTransport( "SMTP" ,{ service: "163" , host: "smtp.163.com" , //这里选用的是163邮箱代发,可改为gmail等 auth: { user: "user@163.com" , // 邮箱账号 pass: "password" // 邮箱密码 } }); // 配置邮件标题、发送地址等 var mailOptions = { from: "测试号 ✔ " , // 代发邮箱 to: "desmail@sina.com" , // 目的邮箱 subject: "我是测试邮件 ✔" , // 邮箱标题 text: "Hello world ✔" , //文本内容 html: file // html body } // 发送 smtpTransport.sendMail(mailOptions, function(error, response){ if(error){ console.log(error); }else{ console.log( "Message sent: " + response.message); } smtpTransport.close(); // 关闭 }); |
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步