Class: Howitzer::MailAdapters::Onesecmail

Inherits:
Abstract
  • Object
show all
Defined in:
lib/howitzer/mail_adapters/onesecmail.rb

Overview

This class represents 1secMail mail adapter

Instance Attribute Summary

Attributes inherited from Abstract

#message

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Abstract

#initialize, #mime_part, #recipients

Constructor Details

This class inherits a constructor from Howitzer::MailAdapters::Abstract

Class Method Details

.find(recipient, subject, wait:) ⇒ Object

Finds an email in storage

Parameters:

  • recipient (String)

    an email

  • subject (String)
  • wait (Integer)

    how much time is required to wait an email

Raises:



15
16
17
18
19
20
21
22
# File 'lib/howitzer/mail_adapters/onesecmail.rb', line 15

def self.find(recipient, subject, wait:)
  message = {}
  retryable(find_retry_params(wait)) { message = retrieve_message(recipient, subject) }
  return new(message) if message.present?

  raise Howitzer::EmailNotFoundError,
        "Message with subject '#{subject}' for recipient '#{recipient}' was not found."
end

Instance Method Details

#html_bodyString

Returns html body of the email message.

Returns:

  • (String)

    html body of the email message



32
33
34
# File 'lib/howitzer/mail_adapters/onesecmail.rb', line 32

def html_body
  message['htmlBody']
end

#mail_fromString

Returns an email address specified in ‘From` field.

Returns:

  • (String)

    an email address specified in ‘From` field



44
45
46
# File 'lib/howitzer/mail_adapters/onesecmail.rb', line 44

def mail_from
  message['from']
end

#plain_text_bodyString

Returns plain text body of the email message.

Returns:

  • (String)

    plain text body of the email message



26
27
28
# File 'lib/howitzer/mail_adapters/onesecmail.rb', line 26

def plain_text_body
  message['body']
end

#received_timeString

Returns when email was received.

Returns:

  • (String)

    when email was received



50
51
52
# File 'lib/howitzer/mail_adapters/onesecmail.rb', line 50

def received_time
  Time.parse(message['date']).to_s
end

#sender_emailString

Returns a real sender email address.

Returns:

  • (String)

    a real sender email address



56
57
58
# File 'lib/howitzer/mail_adapters/onesecmail.rb', line 56

def sender_email
  message['from']
end

#textString

Returns stripped text.

Returns:

  • (String)

    stripped text



38
39
40
# File 'lib/howitzer/mail_adapters/onesecmail.rb', line 38

def text
  message['textBody']
end