Class: MailSlurpClient::SendEmailOptions

Inherits:
Object
  • Object
show all
Defined in:
lib/mailslurp_client/models/send_email_options.rb

Overview

Options for the email to be sent

Defined Under Namespace

Classes: EnumAttributeValidator

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ SendEmailOptions

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
# File 'lib/mailslurp_client/models/send_email_options.rb', line 180

def initialize(attributes = {})
  if (!attributes.is_a?(Hash))
    fail ArgumentError, "The input argument (attributes) must be a hash in `MailSlurpClient::SendEmailOptions` initialize method"
  end

  # check to see if the attribute exists and convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h|
    if (!self.class.attribute_map.key?(k.to_sym))
      fail ArgumentError, "`#{k}` is not a valid attribute in `MailSlurpClient::SendEmailOptions`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
    end
    h[k.to_sym] = v
  }

  if attributes.key?(:'to_contacts')
    if (value = attributes[:'to_contacts']).is_a?(Array)
      self.to_contacts = value
    end
  end

  if attributes.key?(:'to_group')
    self.to_group = attributes[:'to_group']
  end

  if attributes.key?(:'to')
    if (value = attributes[:'to']).is_a?(Array)
      self.to = value
    end
  end

  if attributes.key?(:'from')
    self.from = attributes[:'from']
  end

  if attributes.key?(:'cc')
    if (value = attributes[:'cc']).is_a?(Array)
      self.cc = value
    end
  end

  if attributes.key?(:'bcc')
    if (value = attributes[:'bcc']).is_a?(Array)
      self.bcc = value
    end
  end

  if attributes.key?(:'subject')
    self.subject = attributes[:'subject']
  end

  if attributes.key?(:'reply_to')
    self.reply_to = attributes[:'reply_to']
  end

  if attributes.key?(:'body')
    self.body = attributes[:'body']
  end

  if attributes.key?(:'html')
    self.html = attributes[:'html']
  end

  if attributes.key?(:'is_html')
    self.is_html = attributes[:'is_html']
  end

  if attributes.key?(:'charset')
    self.charset = attributes[:'charset']
  end

  if attributes.key?(:'attachments')
    if (value = attributes[:'attachments']).is_a?(Array)
      self.attachments = value
    end
  end

  if attributes.key?(:'template_variables')
    if (value = attributes[:'template_variables']).is_a?(Hash)
      self.template_variables = value
    end
  end

  if attributes.key?(:'template')
    self.template = attributes[:'template']
  end

  if attributes.key?(:'send_strategy')
    self.send_strategy = attributes[:'send_strategy']
  end

  if attributes.key?(:'use_inbox_name')
    self.use_inbox_name = attributes[:'use_inbox_name']
  end

  if attributes.key?(:'add_tracking_pixel')
    self.add_tracking_pixel = attributes[:'add_tracking_pixel']
  end

  if attributes.key?(:'filter_bounced_recipients')
    self.filter_bounced_recipients = attributes[:'filter_bounced_recipients']
  end

  if attributes.key?(:'validate_email_addresses')
    self.validate_email_addresses = attributes[:'validate_email_addresses']
  end
end

Instance Attribute Details

#add_tracking_pixelObject

Add tracking pixel to email



70
71
72
# File 'lib/mailslurp_client/models/send_email_options.rb', line 70

def add_tracking_pixel
  @add_tracking_pixel
end

#attachmentsObject

Optional list of attachment IDs to send with this email. You must first upload each attachment separately via method call or dashboard in order to obtain attachment IDs. This way you can reuse attachments with different emails once uploaded. There are several ways to upload that support `multi-part form`, `base64 file encoding`, and octet stream binary uploads. See the `UploadController` for available methods.



55
56
57
# File 'lib/mailslurp_client/models/send_email_options.rb', line 55

def attachments
  @attachments
end

#bccObject

Optional list of bcc destination email addresses



34
35
36
# File 'lib/mailslurp_client/models/send_email_options.rb', line 34

def bcc
  @bcc
end

#bodyObject

Optional contents of email. If body contains HTML then set `isHTML` to true to ensure that email clients render it correctly. You can use moustache template syntax in the email body in conjunction with `toGroup` contact variables or `templateVariables` data. If you need more templating control consider creating a template and using the `template` property instead of the body.



43
44
45
# File 'lib/mailslurp_client/models/send_email_options.rb', line 43

def body
  @body
end

#ccObject

Optional list of cc destination email addresses



31
32
33
# File 'lib/mailslurp_client/models/send_email_options.rb', line 31

def cc
  @cc
end

#charsetObject

Optional charset



52
53
54
# File 'lib/mailslurp_client/models/send_email_options.rb', line 52

def charset
  @charset
end

#filter_bounced_recipientsObject

Filter recipients to remove any bounced recipients from to, bcc, and cc before sending



73
74
75
# File 'lib/mailslurp_client/models/send_email_options.rb', line 73

def filter_bounced_recipients
  @filter_bounced_recipients
end

#fromObject

Optional from address. Email address is RFC 5322 format and may include a display name and email in angle brackets (`my@address.com` or `My inbox <my@address.com>`). If no sender is set the source inbox address will be used for this field. If you set `useInboxName` to `true` the from field will include the inbox name as a display name: `inbox_name <inbox@address.com>`. For this to work use the name field when creating an inbox. Beware of potential spam penalties when setting the from field to an address not used by the inbox. Your emails may get blocked by services if you impersonate another address. To use a custom email addresses use a custom domain. You can create domains with the DomainController. The domain must be verified in the dashboard before it can be used.



28
29
30
# File 'lib/mailslurp_client/models/send_email_options.rb', line 28

def from
  @from
end

#htmlObject

Optional HTML flag to indicate that contents is HTML. Set's a `content-type: text/html` for email. (Deprecated: use `isHTML` instead.)



46
47
48
# File 'lib/mailslurp_client/models/send_email_options.rb', line 46

def html
  @html
end

#is_htmlObject

Optional HTML flag. If true the `content-type` of the email will be `text/html`. Set to true when sending HTML to ensure proper rending on email clients



49
50
51
# File 'lib/mailslurp_client/models/send_email_options.rb', line 49

def is_html
  @is_html
end

#reply_toObject

Optional replyTo header



40
41
42
# File 'lib/mailslurp_client/models/send_email_options.rb', line 40

def reply_to
  @reply_to
end

#send_strategyObject

How an email should be sent based on its recipients



64
65
66
# File 'lib/mailslurp_client/models/send_email_options.rb', line 64

def send_strategy
  @send_strategy
end

#subjectObject

Optional email subject line



37
38
39
# File 'lib/mailslurp_client/models/send_email_options.rb', line 37

def subject
  @subject
end

#templateObject

Optional template ID to use for body. Will override body if provided. When using a template make sure you pass the corresponding map of `templateVariables`. You can find which variables are needed by fetching the template itself or viewing it in the dashboard.



61
62
63
# File 'lib/mailslurp_client/models/send_email_options.rb', line 61

def template
  @template
end

#template_variablesObject

Optional map of template variables. Will replace moustache syntax variables in subject and body or template with the associated values if found.



58
59
60
# File 'lib/mailslurp_client/models/send_email_options.rb', line 58

def template_variables
  @template_variables
end

#toObject

List of destination email addresses. Each email address must be RFC 5322 format. Even single recipients must be in array form. Maximum recipients per email depends on your plan. If you need to send many emails try using contacts or contact groups or use a non standard sendStrategy to ensure that spam filters are not triggered (many recipients in one email can affect your spam rating). Be cautious when sending emails that your recipients exist. High bounce rates (meaning a high percentage of emails cannot be delivered because an address does not exist) can result in account freezing.



25
26
27
# File 'lib/mailslurp_client/models/send_email_options.rb', line 25

def to
  @to
end

#to_contactsObject

Optional list of contact IDs to send email to. Manage your contacts via the API or dashboard. When contacts are used the email is sent to each contact separately so they will not see other recipients.



19
20
21
# File 'lib/mailslurp_client/models/send_email_options.rb', line 19

def to_contacts
  @to_contacts
end

#to_groupObject

Optional contact group ID to send email to. You can create contacts and contact groups in the API or dashboard and use them for email campaigns. When contact groups are used the email is sent to each contact separately so they will not see other recipients



22
23
24
# File 'lib/mailslurp_client/models/send_email_options.rb', line 22

def to_group
  @to_group
end

#use_inbox_nameObject

Use name of inbox as sender email address name. Will construct RFC 5322 email address with `Inbox name <inbox@address.com>` if the inbox has a name.



67
68
69
# File 'lib/mailslurp_client/models/send_email_options.rb', line 67

def use_inbox_name
  @use_inbox_name
end

#validate_email_addressesObject

Validate recipient email addresses before sending



76
77
78
# File 'lib/mailslurp_client/models/send_email_options.rb', line 76

def validate_email_addresses
  @validate_email_addresses
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# File 'lib/mailslurp_client/models/send_email_options.rb', line 101

def self.attribute_map
  {
    :'to_contacts' => :'toContacts',
    :'to_group' => :'toGroup',
    :'to' => :'to',
    :'from' => :'from',
    :'cc' => :'cc',
    :'bcc' => :'bcc',
    :'subject' => :'subject',
    :'reply_to' => :'replyTo',
    :'body' => :'body',
    :'html' => :'html',
    :'is_html' => :'isHTML',
    :'charset' => :'charset',
    :'attachments' => :'attachments',
    :'template_variables' => :'templateVariables',
    :'template' => :'template',
    :'send_strategy' => :'sendStrategy',
    :'use_inbox_name' => :'useInboxName',
    :'add_tracking_pixel' => :'addTrackingPixel',
    :'filter_bounced_recipients' => :'filterBouncedRecipients',
    :'validate_email_addresses' => :'validateEmailAddresses'
  }
end

.build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



365
366
367
# File 'lib/mailslurp_client/models/send_email_options.rb', line 365

def self.build_from_hash(attributes)
  new.build_from_hash(attributes)
end

.openapi_nullableObject

List of attributes with nullable: true



153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
# File 'lib/mailslurp_client/models/send_email_options.rb', line 153

def self.openapi_nullable
  Set.new([
    :'to_contacts',
    :'to_group',
    :'to',
    :'from',
    :'cc',
    :'bcc',
    :'subject',
    :'reply_to',
    :'body',
    :'html',
    :'is_html',
    :'charset',
    :'attachments',
    :'template_variables',
    :'template',
    :'send_strategy',
    :'use_inbox_name',
    :'add_tracking_pixel',
    :'filter_bounced_recipients',
    :'validate_email_addresses'
  ])
end

.openapi_typesObject

Attribute type mapping.



127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# File 'lib/mailslurp_client/models/send_email_options.rb', line 127

def self.openapi_types
  {
    :'to_contacts' => :'Array<String>',
    :'to_group' => :'String',
    :'to' => :'Array<String>',
    :'from' => :'String',
    :'cc' => :'Array<String>',
    :'bcc' => :'Array<String>',
    :'subject' => :'String',
    :'reply_to' => :'String',
    :'body' => :'String',
    :'html' => :'Boolean',
    :'is_html' => :'Boolean',
    :'charset' => :'String',
    :'attachments' => :'Array<String>',
    :'template_variables' => :'Hash<String, Object>',
    :'template' => :'String',
    :'send_strategy' => :'String',
    :'use_inbox_name' => :'Boolean',
    :'add_tracking_pixel' => :'Boolean',
    :'filter_bounced_recipients' => :'Boolean',
    :'validate_email_addresses' => :'String'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
# File 'lib/mailslurp_client/models/send_email_options.rb', line 325

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      to_contacts == o.to_contacts &&
      to_group == o.to_group &&
      to == o.to &&
      from == o.from &&
      cc == o.cc &&
      bcc == o.bcc &&
      subject == o.subject &&
      reply_to == o.reply_to &&
      body == o.body &&
      html == o.html &&
      is_html == o.is_html &&
      charset == o.charset &&
      attachments == o.attachments &&
      template_variables == o.template_variables &&
      template == o.template &&
      send_strategy == o.send_strategy &&
      use_inbox_name == o.use_inbox_name &&
      add_tracking_pixel == o.add_tracking_pixel &&
      filter_bounced_recipients == o.filter_bounced_recipients &&
      validate_email_addresses == o.validate_email_addresses
end

#_deserialize(type, value) ⇒ Object

Deserializes the data based on type

Parameters:

  • string

    type Data type

  • string

    value Value to be deserialized

Returns:

  • (Object)

    Deserialized data



393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
# File 'lib/mailslurp_client/models/send_email_options.rb', line 393

def _deserialize(type, value)
  case type.to_sym
  when :DateTime
    DateTime.parse(value)
  when :Date
    Date.parse(value)
  when :String
    value.to_s
  when :Integer
    value.to_i
  when :Float
    value.to_f
  when :Boolean
    if value.to_s =~ /\A(true|t|yes|y|1)\z/i
      true
    else
      false
    end
  when :Object
    # generic object (usually a Hash), return directly
    value
  when /\AArray<(?<inner_type>.+)>\z/
    inner_type = Regexp.last_match[:inner_type]
    value.map { |v| _deserialize(inner_type, v) }
  when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
    k_type = Regexp.last_match[:k_type]
    v_type = Regexp.last_match[:v_type]
    {}.tap do |hash|
      value.each do |k, v|
        hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
      end
    end
  else # model
    MailSlurpClient.const_get(type).build_from_hash(value)
  end
end

#_to_hash(value) ⇒ Hash

Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



462
463
464
465
466
467
468
469
470
471
472
473
474
# File 'lib/mailslurp_client/models/send_email_options.rb', line 462

def _to_hash(value)
  if value.is_a?(Array)
    value.compact.map { |v| _to_hash(v) }
  elsif value.is_a?(Hash)
    {}.tap do |hash|
      value.each { |k, v| hash[k] = _to_hash(v) }
    end
  elsif value.respond_to? :to_hash
    value.to_hash
  else
    value
  end
end

#build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
# File 'lib/mailslurp_client/models/send_email_options.rb', line 372

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  self.class.openapi_types.each_pair do |key, type|
    if type =~ /\AArray<(.*)>/i
      # check to ensure the input is an array given that the attribute
      # is documented as an array but the input is not
      if attributes[self.class.attribute_map[key]].is_a?(Array)
        self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
    end # or else data not found in attributes(hash), not an issue as the data can be optional
  end

  self
end

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


352
353
354
# File 'lib/mailslurp_client/models/send_email_options.rb', line 352

def eql?(o)
  self == o
end

#hashInteger

Calculates hash code according to all attributes.

Returns:

  • (Integer)

    Hash code



358
359
360
# File 'lib/mailslurp_client/models/send_email_options.rb', line 358

def hash
  [to_contacts, to_group, to, from, cc, bcc, subject, reply_to, body, html, is_html, charset, attachments, template_variables, template, send_strategy, use_inbox_name, add_tracking_pixel, filter_bounced_recipients, validate_email_addresses].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



288
289
290
291
# File 'lib/mailslurp_client/models/send_email_options.rb', line 288

def list_invalid_properties
  invalid_properties = Array.new
  invalid_properties
end

#to_bodyHash

to_body is an alias to to_hash (backward compatibility)

Returns:

  • (Hash)

    Returns the object in the form of hash



438
439
440
# File 'lib/mailslurp_client/models/send_email_options.rb', line 438

def to_body
  to_hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



444
445
446
447
448
449
450
451
452
453
454
455
456
# File 'lib/mailslurp_client/models/send_email_options.rb', line 444

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = self.send(attr)
    if value.nil?
      is_nullable = self.class.openapi_nullable.include?(attr)
      next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
    end
    
    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



432
433
434
# File 'lib/mailslurp_client/models/send_email_options.rb', line 432

def to_s
  to_hash.to_s
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



295
296
297
298
299
300
301
# File 'lib/mailslurp_client/models/send_email_options.rb', line 295

def valid?
  send_strategy_validator = EnumAttributeValidator.new('String', ["SINGLE_MESSAGE"])
  return false unless send_strategy_validator.valid?(@send_strategy)
  validate_email_addresses_validator = EnumAttributeValidator.new('String', ["VALIDATE_FILTER_REMOVE_INVALID", "VALIDATE_ERROR_IF_INVALID", "NO_VALIDATION"])
  return false unless validate_email_addresses_validator.valid?(@validate_email_addresses)
  true
end