Class: Etapper::API::SendEmailRequest
- Inherits:
-
Object
- Object
- Etapper::API::SendEmailRequest
- Defined in:
- lib/etapper/api/service.rb
Overview
Instance Attribute Summary collapse
-
#accountRef ⇒ Object
Returns the value of attribute accountRef.
-
#email ⇒ Object
Returns the value of attribute email.
-
#htmlMessage ⇒ Object
Returns the value of attribute htmlMessage.
-
#personaOption ⇒ Object
Returns the value of attribute personaOption.
-
#plainMessage ⇒ Object
Returns the value of attribute plainMessage.
-
#sender ⇒ Object
Returns the value of attribute sender.
-
#subject ⇒ Object
Returns the value of attribute subject.
Instance Method Summary collapse
-
#initialize(accountRef = nil, email = nil, htmlMessage = nil, personaOption = nil, plainMessage = nil, sender = nil, subject = nil) ⇒ SendEmailRequest
constructor
A new instance of SendEmailRequest.
Constructor Details
#initialize(accountRef = nil, email = nil, htmlMessage = nil, personaOption = nil, plainMessage = nil, sender = nil, subject = nil) ⇒ SendEmailRequest
Returns a new instance of SendEmailRequest.
3265 3266 3267 3268 3269 3270 3271 3272 3273 |
# File 'lib/etapper/api/service.rb', line 3265 def initialize(accountRef = nil, email = nil, htmlMessage = nil, personaOption = nil, plainMessage = nil, sender = nil, subject = nil) @accountRef = accountRef @email = email @htmlMessage = htmlMessage @personaOption = personaOption @plainMessage = plainMessage @sender = sender @subject = subject end |
Instance Attribute Details
#accountRef ⇒ Object
Returns the value of attribute accountRef.
3257 3258 3259 |
# File 'lib/etapper/api/service.rb', line 3257 def accountRef @accountRef end |
#email ⇒ Object
Returns the value of attribute email.
3258 3259 3260 |
# File 'lib/etapper/api/service.rb', line 3258 def email @email end |
#htmlMessage ⇒ Object
Returns the value of attribute htmlMessage.
3259 3260 3261 |
# File 'lib/etapper/api/service.rb', line 3259 def htmlMessage @htmlMessage end |
#personaOption ⇒ Object
Returns the value of attribute personaOption.
3260 3261 3262 |
# File 'lib/etapper/api/service.rb', line 3260 def personaOption @personaOption end |
#plainMessage ⇒ Object
Returns the value of attribute plainMessage.
3261 3262 3263 |
# File 'lib/etapper/api/service.rb', line 3261 def plainMessage @plainMessage end |
#sender ⇒ Object
Returns the value of attribute sender.
3262 3263 3264 |
# File 'lib/etapper/api/service.rb', line 3262 def sender @sender end |
#subject ⇒ Object
Returns the value of attribute subject.
3263 3264 3265 |
# File 'lib/etapper/api/service.rb', line 3263 def subject @subject end |