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));