Sha256: 35cb5886fbff2c9d1c2ac59ec27d0dfc0267bc4ba0827e51e5ecf0070d2ea317

Contents?: true

Size: 1.14 KB

Versions: 4

Compression:

Stored size: 1.14 KB

Contents

# ElasticEmail::CampaignOptions

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **delivery_optimization** | [**DeliveryOptimizationType**](DeliveryOptimizationType.md) | How to order email delivery - by recipients' engagement score or by the time they open the most of the emails that were sent to them | [optional] |
| **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] |
| **schedule_for** | **Time** | Date when this Campaign is scheduled to be sent on | [optional] |
| **split_options** | [**SplitOptions**](SplitOptions.md) | Optional options for A/X split campaigns. Will be ignored if only one template content was provided | [optional] |

## Example

```ruby
require 'ElasticEmail'

instance = ElasticEmail::CampaignOptions.new(
  delivery_optimization: null,
  track_opens: true,
  track_clicks: true,
  schedule_for: null,
  split_options: null
)
```

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ElasticEmail-4.0.13 docs/CampaignOptions.md
ElasticEmail-4.0.12 docs/CampaignOptions.md
ElasticEmail-4.0.11 docs/CampaignOptions.md
ElasticEmail-4.0.1 docs/CampaignOptions.md