E-mail configuration
| Name | Type | Description | Notes |
|---|---|---|---|
| time_offset | int | By how long should an e-mail be delayed (in minutes). Maximum is 35 days. | [optional] |
| pool_name | str | Name of your custom IP Pool to be used in the sending process | [optional] |
| channel_name | str | Name of selected channel. | [optional] |
| encoding | EncodingType | [optional] | |
| track_opens | bool | Should the opens be tracked? If no value has been provided, Account's default setting will be used. | [optional] |
| track_clicks | bool | Should the clicks be tracked? If no value has been provided, Account's default setting will be used. | [optional] |
from ElasticEmail.models.options import Options
# TODO update the JSON string below
json = "{}"
# create an instance of Options from a JSON string
options_instance = Options.from_json(json)
# print the JSON string representation of the object
print(Options.to_json())
# convert the object into a dict
options_dict = options_instance.to_dict()
# create an instance of Options from a dict
options_from_dict = Options.from_dict(options_dict)