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
var fs = require('fs'); | |
// npm install csv-parse | |
var parse = require('csv-parse'); | |
// CSV with ONLY the codes you want to give away | |
var prepaid_codes_file = 'giveaway-codes.csv'; | |
var emails_file = 'giveaway-emails.csv'; | |
var Mailgun = require('mailgun').Mailgun; |