From 2cf04b7f72bcc61497b2b3c952d5a96c2d264b1e Mon Sep 17 00:00:00 2001 From: Elise Shanholtz Date: Thu, 12 Mar 2020 13:31:57 -0700 Subject: [PATCH] remove test file --- test.js | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 test.js diff --git a/test.js b/test.js deleted file mode 100644 index 5825c5e2e..000000000 --- a/test.js +++ /dev/null @@ -1,15 +0,0 @@ - -// using Twilio SendGrid's v3 Node.js Library -// https://github.com/sendgrid/sendgrid-nodejs -const sgMail = require('./packages/mail'); -sgMail.setApiKey(process.env.SENDGRID_API_KEY); -const msg = { - to: 'ea.shanholtz@gmail.com', - from: 'ea.shanholtz@gmail.com', - subject: 'Sending with Twilio SendGrid is Fun', - text: 'and easy to do anywhere, even with Node.js', - html: 'and easy to do anywhere, even with Node.js', -}; -sgMail.send(msg) - .then(response => console.log(response)) - .catch(err => console.log(err));