Skip to content

Instantly share code, notes, and snippets.

@kseniya292
Last active July 11, 2017 16:44
Show Gist options
  • Save kseniya292/9e3ee25f40f2696783d970cae7bdcabb to your computer and use it in GitHub Desktop.
Save kseniya292/9e3ee25f40f2696783d970cae7bdcabb to your computer and use it in GitHub Desktop.
onSubmit(name, email, message) {
this._emailService.sendEmail({
from: 'Mailgun Sandbox <postmaster@sandboxXXXXXXXXXXXXXXXXXXXXX.mailgun.org>',
to: email,
name: name,
text: message,
})
.subscribe(
() => {},
err => console.log(err)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment