Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1.16 KB

CampaignOptions.md

File metadata and controls

30 lines (24 loc) · 1.16 KB

ElasticEmail::CampaignOptions

Properties

Name Type Description Notes
delivery_optimization DeliveryOptimizationType [optional][default to 'None']
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]
trigger_frequency Float How often (in minutes) to send the campaign [optional]
trigger_count Integer How many times send the campaign [optional]
split_options SplitOptions [optional]

Example

require 'ElasticEmail'

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