Skip to content

Instantly share code, notes, and snippets.

@admhpr
Created March 28, 2019 02:08
Show Gist options
  • Save admhpr/b163630eeca8f64b14059a1259268320 to your computer and use it in GitHub Desktop.
Save admhpr/b163630eeca8f64b14059a1259268320 to your computer and use it in GitHub Desktop.
Fix for lecture 139
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;
@admhpr
Copy link
Author

admhpr commented Mar 28, 2019

run to uninstall old package:
npm uninstall sendgrid

install new mail package:
npm i @sendgrid/mail

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment