Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 470 Bytes

File metadata and controls

22 lines (16 loc) · 470 Bytes

ElasticEmail::EmailView

Properties

Name Type Description Notes
body String Body (HTML, otherwise plain text) of email [optional]
subject String Default subject of email. [optional]
from String From email address [optional]

Example

require 'ElasticEmail'

instance = ElasticEmail::EmailView.new(
  body: null,
  subject: Hello!,
  from: null
)