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 : "[email protected]", // your email
password : "hcdsxxxxxxdfjh", // your email password
toEmail : "[email protected]", //send email to
subject : "hello", //subject
text : "Hi" //message
}

HOW TO SEND ?


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