Skip to content

Instantly share code, notes, and snippets.

@leoaiassistant
Last active November 4, 2020 11:25
Show Gist options
  • Save leoaiassistant/867bb53998e6629b02ad1e6c16be5d52 to your computer and use it in GitHub Desktop.
Save leoaiassistant/867bb53998e6629b02ad1e6c16be5d52 to your computer and use it in GitHub Desktop.
const mailOptions = {
 from: "YourmailUserID", // Here insert the sender Gmail address
 to: email, // Here goes the users email receivers
 subject: "Bot Notification DEMO", // Here insert your Subject line
 html: '<h1>Welcome ${name} I'm Notify Bot 🤖</h1> 
 <h2>Here you add your message template and content</h2> 
 <p> 🤖 And media content to personalise the email notification to your users ✅ </p> ',
 
attachments:
[{
 filename: attachments,
 path: attachments,
 cid: attachments 
}]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment