2 回答

TA貢獻(xiàn)2037條經(jīng)驗(yàn) 獲得超6個(gè)贊
當(dāng)我正確輸入我自己的信息并打開(kāi)“不太安全的應(yīng)用程序”時(shí),它完美地工作,請(qǐng)嘗試這種方式
注意(關(guān)鍵):確?!安惶踩膽?yīng)用程序”選項(xiàng)已打開(kāi) (如果您不知道如何打開(kāi),可以訪問(wèn)此處)
注意:確保關(guān)閉兩步驗(yàn)證
var express = require("express");
var router = express.Router();
var nodemailer = require("nodemailer");
const myGmailAccount = {
mail: 'your_gmail_address', // MAIL
passw: 'your_gmail_password', // PASSW
};
/* GET contact page. */
router.get("/", function (req, res, next) {
res.render("contact", { title: "Contact" });
});
router.post("/send", function (req, res, next) {
var transporter = nodemailer.createTransport({
service: "Gmail",
auth: {
user: myGmailAccount.mail,
pass: myGmailAccount.passw,
},
tls: {
rejectUnauthorized: false
}
});
var mailOptions = {
from: myGmailAccount.mail,
to: 'emintayfur@icloud.com', // recipient mail
subject: "Website Submission",
text:
"You have a new submission with the following details...Name: " +
req.body.name +
" Email: " +
req.body.email +
" Message: " +
req.body.message,
html:
"<p> You got a new submission with the following details...</p><ul></ul><li>Name: " +
req.body.name +
"</li><li>Email: " +
req.body.email +
"</li><li>Message: " +
req.body.message +
"</li></ul>",
};
transporter.sendMail(mailOptions, function (error, info) {
if (error) {
console.log(error);
res.redirect("/");
} else {
console.log("Message Sent: " + info.response);
}
});
});

TA貢獻(xiàn)1779條經(jīng)驗(yàn) 獲得超6個(gè)贊
是的,您需要輸入您的真實(shí)信息,我建議您閱讀此文本。
盡管 Gmail 是開(kāi)始發(fā)送電子郵件的最快方式,但除非您使用 OAuth2 身份驗(yàn)證,否則它絕不是一個(gè)更好的解決方案。Gmail 希望用戶是真正的用戶而不是機(jī)器人,因此它會(huì)針對(duì)每次登錄嘗試運(yùn)行大量試探法,并阻止任何看起來(lái)可疑的內(nèi)容,以保護(hù)用戶免受帳戶劫持企圖。例如,如果您的服務(wù)器位于另一個(gè)地理位置,您可能會(huì)遇到麻煩——在您的開(kāi)發(fā)機(jī)器上一切正常,但消息在生產(chǎn)環(huán)境中被阻止。
此外,Gmail 提出了“不太安全”應(yīng)用程序的概念,基本上任何人都可以使用普通密碼登錄 Gmail,因此您最終可能會(huì)遇到一個(gè)用戶名可以發(fā)送郵件的情況(對(duì)“不太安全”的應(yīng)用程序的支持是啟用)但其他被阻止(禁用對(duì)“不太安全”的應(yīng)用程序的支持)。您可以在此處配置您的 Gmail 帳戶以允許安全性較低的應(yīng)用程序。使用此方法時(shí),請(qǐng)確保還通過(guò)完成“Captcha Enable”挑戰(zhàn)來(lái)啟用所需的功能。沒(méi)有這個(gè),安全性較低的連接可能無(wú)法工作。
并確?!鞍踩暂^低的應(yīng)用程序”選項(xiàng)已打開(kāi) 如果您不知道如何打開(kāi),可以訪問(wèn)此處
有關(guān)更多信息,我建議您查看此頁(yè)面
添加回答
舉報(bào)