Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 853 Bytes

InboundPayload.md

File metadata and controls

28 lines (22 loc) · 853 Bytes

ElasticEmail::InboundPayload

Properties

Name Type Description Notes
filter String Filter of the inbound data
name String Name of this route
filter_type InboundRouteFilterType [default to 'EmailAddress']
action_type InboundRouteActionType [default to 'ForwardToEmail']
email_address String Email to forward the inbound to [optional]
http_address String Address to notify about the inbound [optional]

Example

require 'ElasticEmail'

instance = ElasticEmail::InboundPayload.new(
  filter: null,
  name: null,
  filter_type: null,
  action_type: null,
  email_address: null,
  http_address: null
)