Email Definition
Create Emails
Email email = Email.create()
.from("[email protected]")
.to("[email protected]")
.subject("Hello!")
.textMessage("A plain text message...");Email email = Email.create()
.from("[email protected]")
.to("[email protected]")
.subject("Hello HTML!")
.htmlMessage("<b>HTML</b> message...");Email email = Email.create()
.from("[email protected]")
.to("[email protected]")
.subject("Hello!")
.textMessage("text message...")
.htmlMessage("<b>HTML</b> message...")
.priority(PRIORITY_HIGHEST);Email Addresses
Attachments
Embedded (inline) attachments
Example
Last updated