SendEmailInput
Send an email to all members of one or more Lists
input SendEmailInput {
description: String
email_addresses: [String!]!
exclude_email_addresses: [String!]
exclude_list_ids: [ID!]
folder_id: ID!
id: ID!
is_transactional: Boolean!
list_ids: [ID!]!
name: String!
send_at: DateTime
tags: [String!]!
utm_campaign: String
utm_medium: String
utm_source: String
}
Fields
SendEmailInput.description
● String
scalar
SendEmailInput.email_addresses
● [String!]!
non-null scalar
An array of Email Addresses that will be included in the send
SendEmailInput.exclude_email_addresses
● [String!]
list scalar
An array of Email Addresses that will be excluded from partipation
SendEmailInput.exclude_list_ids
● [ID!]
list scalar
Optional - an array of List IDs whose members will be excluded from participation
SendEmailInput.folder_id
● ID!
non-null scalar
The ID of the Folder to add the Send It Campaign to.
SendEmailInput.id
● ID!
non-null scalar
The ID of the Email to send.
SendEmailInput.is_transactional
● Boolean!
non-null scalar
SendEmailInput.list_ids
● [ID!]!
non-null scalar
An array of List IDs whose members will be included in the send
SendEmailInput.name
● String!
non-null scalar
The name of the new Campaign that will be created.
SendEmailInput.send_at
● DateTime
scalar
Optional - the date and time at which to send the email
SendEmailInput.tags
● [String!]!
non-null scalar
SendEmailInput.utm_campaign
● String
scalar
SendEmailInput.utm_medium
● String
scalar
SendEmailInput.utm_source
● String
scalar
Member Of
sendEmail
mutation