Node를 사용하여 전자 메일을 보냅니다.js
다음은 노드를 사용하여 전자메일을 보낼 수 있는 간단한 절차입니다.js는 nodeEmailer를 사용합니다.
1단계 - NodeEmailer 설치
다음 명령을 사용하여nodemailer를 설치합니다
npm install nodemailer
2단계 - 전송기 생성
NodeEmailer 가져오기 및 transporter 만들기
var nodemailer = require('nodemailer');
let transporter = nodemailer.createTransport({
service: 'gmail' // here I am using gmail service
auth:{
user: '[email protected],
passoword: 'your gmail app passsword'
}
});
Remember the password you are going to use is not the password for email rather you will have to generate application password provided by gmail. Click here to see how to generate application password
3단계 - 생성 옵션
let mailOptions = {
to: '[email protected]',
subject: 'Sending Email using Node.js',
text: 'That was easy!'
};
4단계 - 이메일 보내기
transporter.sendMail(mailOptions, function(error, info){
if (error) {
console.log(error);
} else {
console.log('Email sent: ' + info.response);
}
});
IF YOU LIKED THIS ARTICLE MAKE SURE TO FOLLOW ME ON DEV.TO AND ON
Reference
이 문제에 관하여(Node를 사용하여 전자 메일을 보냅니다.js), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/rawas_aditya/send-email-using-node-js-3n2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)