Skip to content

Instantly share code, notes, and snippets.

@Aschen
Created May 4, 2020 09:55
Show Gist options
  • Save Aschen/95d9aaaf3b981a20da1032392a95a741 to your computer and use it in GitHub Desktop.
Save Aschen/95d9aaaf3b981a20da1032392a95a741 to your computer and use it in GitHub Desktop.
class EmailService {
constructor (log) {
this.log = log;
}
async notify (emails, requestId) {
for (const email of emails) {
this.log(`[${requestId}] Send email: ${email}`);
sendGrid.send(email);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment