-
-
Save payingattention/5504385 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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