Node를 사용하여 전자 메일을 보냅니다.js

노드를 사용하여 전자 메일 메시지를 보내려면 다음과 같이 하십시오.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


좋은 웹페이지 즐겨찾기