Module: EmailSpec::MailExt
- Defined in:
- lib/email_spec/mail_ext.rb
Instance Method Summary collapse
Instance Method Details
#default_part ⇒ Object
2 3 4 |
# File 'lib/email_spec/mail_ext.rb', line 2 def default_part @default_part ||= html_part || text_part || self end |
#default_part_body ⇒ Object
6 7 8 |
# File 'lib/email_spec/mail_ext.rb', line 6 def default_part_body HTMLEntities.new.decode(default_part.body) end |
#html ⇒ Object
10 11 12 |
# File 'lib/email_spec/mail_ext.rb', line 10 def html html_part ? html_part.body.raw_source : nil end |