Class: Courrier::Configuration::Inbox
- Inherits:
-
Object
- Object
- Courrier::Configuration::Inbox
- Defined in:
- lib/courrier/configuration/inbox.rb
Instance Attribute Summary collapse
-
#auto_open ⇒ Object
Returns the value of attribute auto_open.
-
#destination ⇒ Object
Returns the value of attribute destination.
-
#template_path ⇒ Object
Returns the value of attribute template_path.
Instance Method Summary collapse
-
#initialize ⇒ Inbox
constructor
A new instance of Inbox.
Constructor Details
#initialize ⇒ Inbox
Returns a new instance of Inbox.
8 9 10 11 12 |
# File 'lib/courrier/configuration/inbox.rb', line 8 def initialize @destination = default_destination @auto_open = false @template_path = File.("../../../courrier/email/providers/inbox/default.html.erb", __FILE__) end |
Instance Attribute Details
#auto_open ⇒ Object
Returns the value of attribute auto_open.
6 7 8 |
# File 'lib/courrier/configuration/inbox.rb', line 6 def auto_open @auto_open end |
#destination ⇒ Object
Returns the value of attribute destination.
6 7 8 |
# File 'lib/courrier/configuration/inbox.rb', line 6 def destination @destination end |
#template_path ⇒ Object
Returns the value of attribute template_path.
6 7 8 |
# File 'lib/courrier/configuration/inbox.rb', line 6 def template_path @template_path end |