Created
March 28, 2019 02:08
-
-
Save admhpr/b163630eeca8f64b14059a1259268320 to your computer and use it in GitHub Desktop.
Fix for lecture 139
This file contains 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
const keys = require('../config/keys'); | |
const sgMail = require('@sendgrid/mail'); | |
class Mailer { | |
constructor({ subject, recipients }, content) { | |
sgMail.setApiKey(keys.sendGridKey); | |
this.to = recipients.map(({ email }) => email); | |
this.from = '[email protected]'; | |
this.subject = subject; | |
this.html = content; | |
} | |
async send() { | |
let response; | |
try { | |
response = await sgMail.send(this, true); | |
} catch (error) { | |
console.error(error); | |
} | |
return response; | |
} | |
} | |
module.exports = Mailer; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
run to uninstall old package:
npm uninstall sendgrid
install new mail package:
npm i @sendgrid/mail