emailUtil.js
998 字节
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
38
39
40
41
42
43
44
45
46
/**
*
* @Description 邮件发送
* 调用方法:sendMail('amor_zhang@qq.com','这是测试邮件', 'Hi Amor,这是一封测试邮件');
*
*/
var nodemailer = require('nodemailer')
var smtpTransport = require('nodemailer-smtp-transport');
smtpTransport = nodemailer.createTransport(smtpTransport({
host: "smtp.ym.163.com",
secureConnection: true,
port:465,
auth: {
user: 'service@3mang.com',
pass: '6Ltsa9u1AR',
}
// service: "QQ",
// auth: {
// user: "756884223@qq.com",
// pass: "zouboddwgilgbgaa"
// }
}));
/**
* @param {String} recipient 收件人
* @param {String} subject 发送的主题
* @param {String} html 发送的html内容
*/
function email(){
}
email.prototype.sendMail = async(recipient, subject, html) => {
return await smtpTransport.sendMail({
from: "service@3mang.com",
to: recipient,
subject: subject,
html: html
})
}
module.exports = new email();