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