노드메일러
노드js - nodemailer 모듈
노드js - nodemailer 모듈 // require가 설치한 모듈을 불러옴 // 지금 설치된 nodemailer 모듈을 불러온 것 // 이제 nodemailer 기능들을 사용하게 됨 const nodemailer = require('nodemailer') const email = { host: "smtp.mailtrap.io", port: 2525, auth: { user: "b7acd369738df0", pass: "335d075b2dfae2" } }; const send = async (option) => { nodemailer.createTransportrt(email).sendMail(option, (error, info) => { if(error) { console.log(error) } ..