varnodemailer=require('nodemailer');//setup the transportervartransporter=nodemailer.createTransport({service:'gmail',auth:{// your gmail credentials to use it's serviceuser:'xyz@gmail.com',pass:'yourpassword'}});varmailOptions={from:'youremail@gmail.com',//sending from,to:'ceo@go237.com'...
Modify your Gmail account (or create a separate Gmail account for sending messages) andconfigure it for less secure apps. This is needed so the underlying npm module used by ngrok-notify for sending email (Nodemailer) can send email using Gmail. See also the Nodemailer notes onusing Gmail. C...