Sha256: 35f01ac52ca2616cdf78bad16158cb24632bb10b0f4f0a9e22ad79767d063bfd

Contents?: true

Size: 1.11 KB

Versions: 6

Compression:

Stored size: 1.11 KB

Contents

# ElasticEmail::CampaignTemplate

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **poolname** | **String** | Name of your custom IP Pool to be used in the sending process | [optional] |
| **from** | **String** | Your e-mail with an optional name (e.g.: John Doe <email@domain.com>) | [optional] |
| **reply_to** | **String** | To what address should the recipients reply to (e.g. John Doe <email@domain.com>) | [optional] |
| **subject** | **String** | Default subject of email. | [optional] |
| **template_name** | **String** | Name of template. | [optional] |
| **attach_files** | **Array<String>** | Names of previously uploaded files that should be sent as downloadable attachments | [optional] |
| **utm** | [**Utm**](Utm.md) |  | [optional] |

## Example

```ruby
require 'ElasticEmail'

instance = ElasticEmail::CampaignTemplate.new(
  poolname: My Custom Pool,
  from: John Doe <email@domain.com>,
  reply_to: John Doe <email@domain.com>,
  subject: Hello!,
  template_name: Template01,
  attach_files: [ "preuploaded.jpg" ],
  utm: null
)
```

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ElasticEmail-4.0.23 docs/CampaignTemplate.md
ElasticEmail-4.0.22 docs/CampaignTemplate.md
ElasticEmail-4.0.21 docs/CampaignTemplate.md
ElasticEmail-4.0.20 docs/CampaignTemplate.md
ElasticEmail-4.0.16 docs/CampaignTemplate.md
ElasticEmail-4.0.15 docs/CampaignTemplate.md