Class: Etapper::API::SendEmailRequest

Inherits:
Object
  • Object
show all
Defined in:
lib/etapper/api/service.rb

Overview

etapestryAPI/serviceSendEmailRequest

accountRef - SOAP::SOAPString
email - SOAP::SOAPString
htmlMessage - SOAP::SOAPString
personaOption - SOAP::SOAPString
plainMessage - SOAP::SOAPString
sender - SOAP::SOAPString
subject - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#accountRefObject

Returns the value of attribute accountRef.



3257
3258
3259
# File 'lib/etapper/api/service.rb', line 3257

def accountRef
  @accountRef
end

#emailObject

Returns the value of attribute email.



3258
3259
3260
# File 'lib/etapper/api/service.rb', line 3258

def email
  @email
end

#htmlMessageObject

Returns the value of attribute htmlMessage.



3259
3260
3261
# File 'lib/etapper/api/service.rb', line 3259

def htmlMessage
  @htmlMessage
end

#personaOptionObject

Returns the value of attribute personaOption.



3260
3261
3262
# File 'lib/etapper/api/service.rb', line 3260

def personaOption
  @personaOption
end

#plainMessageObject

Returns the value of attribute plainMessage.



3261
3262
3263
# File 'lib/etapper/api/service.rb', line 3261

def plainMessage
  @plainMessage
end

#senderObject

Returns the value of attribute sender.



3262
3263
3264
# File 'lib/etapper/api/service.rb', line 3262

def sender
  @sender
end

#subjectObject

Returns the value of attribute subject.



3263
3264
3265
# File 'lib/etapper/api/service.rb', line 3263

def subject
  @subject
end