Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 426 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 426 Bytes

nodejs-send-mail

HOW TO USE

const config = {
fromEmail : "insxxxxxxub@gmail.com", // your email
password : "hcdsxxxxxxdfjh", // your email password
toEmail : "vxxxxxxz@gmail.com", //send email to
subject : "hello", //subject
text : "Hi" //message
}

HOW TO SEND ?


sendMail(config).then(res=>{
console.log(res);
})