Skip to content

Instantly share code, notes, and snippets.

@payingattention
Forked from gr2m/email_dreamcode.js
Created May 2, 2013 18:46
Show Gist options
  • Select an option

  • Save payingattention/5504385 to your computer and use it in GitHub Desktop.

Select an option

Save payingattention/5504385 to your computer and use it in GitHub Desktop.
// send text email
sendEmail({
subject: "Hello, World!",
text: "This mail has been sent from the frontend",
to: "joe@exam.pl"
})
// send multipart text / html email
sendEmail({
subject: "Hello, World!",
text: "This mail has been sent from the frontend",
html: "<p>This mail has been sent from the frontend</p>",
to: "joe@exam.pl"
})
// send multipart with attachment
sendEmail({
subject: "Hello, World!",
text: "This mail has been sent from the frontend",
html: "<p>This mail has been sent from the frontend</p>",
to: "gregor@martynus.net",
attachments: [ convert( document.body ).to("screenshot.png") ]
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment