Skip to content

Instantly share code, notes, and snippets.

View hemanthmalla's full-sized avatar

Hemanth Malla hemanthmalla

  • Datadog
  • New York City
View GitHub Profile
@hemanthmalla
hemanthmalla / baahubali_poll.js
Created April 27, 2017 07:09
Baahubali 2: The Conclusion Venue Notifier.
var request = require('request');
var nodemailer = require('nodemailer');
var sesTransport = require('nodemailer-ses-transport');
var transporter = nodemailer.createTransport(sesTransport({
accessKeyId: process.env.KEY_ID,
secretAccessKey: process.env.KEY,
region: process.env.REGION
}));