Sha256: 5d0d6eaa251314f351ad8abd00ee6f12d9e082e6cace292f751b123a09391fdf

Contents?: true

Size: 1.51 KB

Versions: 3

Compression:

Stored size: 1.51 KB

Contents

# Buildium::EmailPostMessage

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **template_id** | **Integer** | Unique identifier of the email template to use for the body of the email. Any tokens present in the template will be replaced based on the recipient(s) of the email. |  |
| **subject** | **String** | Email subject. |  |
| **include_alternate_emails** | **Boolean** | Indicates whether to send the email to the recipient's primary and alternate email addresses. |  |
| **exclude_delinquent_recipients** | **Boolean** | Indicates whether to exclude sending emails to association owners that are flagged as delinquent. This only applies to association recipients. |  |
| **include_association_tenants** | **Boolean** | Indicates whether to include association tenants. Only applies to association properties. |  |
| **property_ids** | **Array<Integer>** | A list of association and/or rental property unique identifiers to send the email to. Cannot be populated if 'RecipientIds' is present. | [optional] |
| **recipient_ids** | **Array<Integer>** | A list of individual unique identifiers to send the email to. Cannot be populated if 'PropertyIds' is present. | [optional] |

## Example

```ruby
require 'buildium-ruby'

instance = Buildium::EmailPostMessage.new(
  template_id: null,
  subject: null,
  include_alternate_emails: null,
  exclude_delinquent_recipients: null,
  include_association_tenants: null,
  property_ids: null,
  recipient_ids: null
)
```

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
buildium-ruby-3.0.0 docs/EmailPostMessage.md
buildium-ruby-2.1.0 docs/EmailPostMessage.md
buildium-ruby-2.0.1 docs/EmailPostMessage.md