OBJECT

SendEmailRecipient

link GraphQL Schema definition

  • type SendEmailRecipient {
  • # Which linked record (e.g. Contact or Account) this recipient primarily
  • # represents, used when linking the sent email to a record.
  • primary: EntityLacotaType
  • # Opportunity this recipient is associated with, when sending in the context of an
  • # opportunity.
  • opportunityId: UUID
  • # Contact this recipient corresponds to, when known.
  • contactId: UUID
  • # Account this recipient corresponds to, when known.
  • accountId: UUID
  • # Lead this recipient is associated with, when sending in the context of a lead.
  • leadId: UUID
  • # Project this recipient is associated with, when sending in the context of a
  • # project.
  • projectId: UUID
  • # Quote this recipient is associated with, when sending in the context of a quote.
  • quoteId: UUID
  • # Custom entity records this recipient is associated with, each given as a
  • # `CustomEntityID`.
  • customEntityIds: [CustomEntityID]
  • # Email address the message is sent to.
  • address: String!
  • }