Skip to content

Instantly share code, notes, and snippets.

@SamWSoftware
Created December 24, 2017 01:21
Show Gist options
  • Save SamWSoftware/c04984f8a69d64c807c1afbc4b959f85 to your computer and use it in GitHub Desktop.
Save SamWSoftware/c04984f8a69d64c807c1afbc4b959f85 to your computer and use it in GitHub Desktop.
class MailgunMailer {
constructor({ subject, recipients }, content) {
this.data = {
from: "no-reply@samwsoftware.com",
to: this.formatAdresses(recipients),
subject: subject,
html: content
};
}
formatAdresses(recipients) {
return recipients.map(({ email }) => email).join(",");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment