INPUT_OBJECT
CreateMassEmailMutationInput
The input object that defines the fields for the createMassEmail mutation.
link GraphQL Schema definition
- input CreateMassEmailMutationInput {
- # The name to send from when using this email message. If `null`, then the system
- # default will be used.
- : String!
- # The email address to send from when using this email message. If `null`, then
- # the system default will be used.
- : EmailAddress!
- # The subject.
- : String!
- # The message.
- : Text!
- # A short sentence that will be shown as a preview in compatible email clients.
- : String
- # IDs of `AccountStatus`es.
- : [Int64Bit]
- # IDs of `AccountType`s.
- : [Int64Bit]
- # A list of account group IDs that this account is part of.
- : [Int64Bit]
- # IDs of `Service`s.
- : [Int64Bit]
- # IDs of `InventoryItem`s.
- : [Int64Bit]
- # A list of MessageCategory IDs to apply to this contact. If this property is
- # excluded, then the contact will inherit the default message categories, which is
- # the typical behavior. You should only include this property if you want to
- # override the default behavior.
- : [Int64Bit]
- # A list of MessageCategory IDs to apply to this contact. If this property is
- # excluded, then the contact will inherit the default message categories, which is
- # the typical behavior. You should only include this property if you want to
- # override the default behavior.
- : [Int64Bit]
- # IDs of `Subnet`s.
- : [Int64Bit]
- # IDs of `IpPool`s.
- : [Int64Bit]
- # IDs of `NetworkSite`s.
- : [Int64Bit]
- # IDs of `Contact`s.
- : [Int64Bit]
- # List of language codes.
- : [String]
- # Whether or not this entity is delinquent.
- : Boolean
- # A note about this entity.
- : NoteMutationInput
- # A list of file IDs to be associated with this object. These must first have been
- # uploaded to the /files endpoint and must be currently unassociated.
- : [AssociateFileMutationInput]
- }