Last active
November 4, 2020 11:25
-
-
Save leoaiassistant/867bb53998e6629b02ad1e6c16be5d52 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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