Sha256: 7fcaeefe4927bc4e1a4fffea94f04af82dd497318d395b7b4bd17c50b113fd5d
Contents?: true
Size: 1.04 KB
Versions: 9
Compression:
Stored size: 1.04 KB
Contents
# ElasticEmail::Options ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **time_offset** | **Integer** | By how long should an e-mail be delayed (in minutes). Maximum is 35 days. | [optional] | | **pool_name** | **String** | Name of your custom IP Pool to be used in the sending process | [optional] | | **channel_name** | **String** | Name of selected channel. | [optional] | | **encoding** | [**EncodingType**](EncodingType.md) | | [optional][default to 'UserProvided'] | | **track_opens** | **Boolean** | Should the opens be tracked? If no value has been provided, Account's default setting will be used. | [optional] | | **track_clicks** | **Boolean** | Should the clicks be tracked? If no value has been provided, Account's default setting will be used. | [optional] | ## Example ```ruby require 'ElasticEmail' instance = ElasticEmail::Options.new( time_offset: null, pool_name: My Custom Pool, channel_name: Channel01, encoding: null, track_opens: true, track_clicks: true ) ```
Version data entries
9 entries across 9 versions & 1 rubygems