Skip to content

Instantly share code, notes, and snippets.

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