這篇文章主要介紹如何使用node發(fā)送qq郵件,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
成都創(chuàng)新互聯(lián)公司主打移動(dòng)網(wǎng)站、做網(wǎng)站、網(wǎng)站建設(shè)、網(wǎng)站改版、網(wǎng)絡(luò)推廣、網(wǎng)站維護(hù)、域名注冊(cè)、等互聯(lián)網(wǎng)信息服務(wù),為各行業(yè)提供服務(wù)。在技術(shù)實(shí)力的保障下,我們?yōu)榭蛻舫兄Z穩(wěn)定,放心的服務(wù),根據(jù)網(wǎng)站的內(nèi)容與功能再?zèng)Q定采用什么樣的設(shè)計(jì)。最后,要實(shí)現(xiàn)符合網(wǎng)站需求的內(nèi)容、功能與設(shè)計(jì),我們還會(huì)規(guī)劃穩(wěn)定安全的技術(shù)方案做保障。使用nodemailer包
let transporter = nodemailer.createTransport({ // 使用qq發(fā)送郵件 // 更多請(qǐng)查看支持列表:https://nodemailer.com/smtp/well-known/ service: 'qq', port: 465, // SMTP 端口 secureConnection: true, // 使用了 SSL auth: { user: '751734566@qq.com', // 這里密碼不是qq密碼,是你設(shè)置的smtp授權(quán)碼 // 獲取qq授權(quán)碼請(qǐng)看:https://jingyan.baidu.com/article/6079ad0eb14aaa28fe86db5a.html pass: 'xxxxxxxx', } });
接下來(lái)我們?cè)O(shè)置我們到發(fā)送內(nèi)容
let mailOpt= { from: '"test"', // 你到qq郵箱地址 to: 'xxxx@qq.com', // 接受人,可以群發(fā)填寫(xiě)多個(gè)逗號(hào)分隔 subject: 'Hello', // 主題名(郵件名) // 可以發(fā)送text或者h(yuǎn)tml格式,2選1 // text: 'Hello world?', // 純文本 html: 'Hello world?' // html };
如果我們想發(fā)一個(gè)稍微漂亮到郵件怎么辦?
我們可以使用html模板來(lái)實(shí)現(xiàn)
const template = require('art-template'); let html = template(__dirname + '/mail_temp.html', obj) // mail_temp.html為你想使用到頁(yè)面模板,obj為你的參數(shù) // 例如 obj = { name : 'test', phone : '183xxxxxxxx', time : new Date() }新用戶:{{name}}({{phone}})于{{time}}進(jìn)行了注冊(cè). 所有準(zhǔn)備完成,讓我們發(fā)送郵件吧! // 執(zhí)行發(fā)送 transporter.sendMail(mailOptions, (error, info) => { if (error) { return console.log(error); } console.log('郵件已發(fā)送成功,郵件id: %s', info.messageId); });
以上是“如何使用node發(fā)送qq郵件”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!