nodemailer

nodejs 发送qq邮件 nodemailer

一世执手 提交于 2020-08-11 09:30:20
官网 https://nodemailer.com/about/ https://www.cnblogs.com/jackson-yqj/p/10154296.html 获取qq邮箱授权码, 需要使用手机发送短信 发送成功 安装, 这里使用yarn安装时出现了错误, 换成npm就ok了 cnpm i nodemailer -D 官方案例 发送qq邮件 授权码十分重要, 主要保护好隐私 发送多个邮箱时, 使用的是字符串拼接, 而不是数组 可以发送html, 但是图片的话没有测试 https://www.jianshu.com/p/04e596da7d33 const nodemailer = require("nodemailer"); const _user = '504595380@qq.com' const _pwd = 'xxx' async function main() { let transporter = nodemailer.createTransport({ host: "smtp.qq.com", port: 465, secure: true, // true for 465, false for other ports auth: { user: _user, // generated ethereal user pass: _pwd, //

定时天气爬虫发送天气邮件

[亡魂溺海] 提交于 2020-08-05 06:27:47
今天无聊,在家研究个爬虫玩玩 主要用到以下几个库: request 请求资源 iconv-lite转码,有的网站html格式不是utf-8 cheerio类似jq,操作html,获取相关爬虫数据 nodemailer 发送邮件,例如qq邮箱,需要开启qq邮箱的第三方登录,会有一个密钥 有女朋友的可以写个定时天气爬虫,给女朋友定时发天气提醒,然而可能我想多了,码农怎么会有女盆友,溜了溜了 来源: oschina 链接: https://my.oschina.net/u/3407699/blog/4358751