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.
- : EntityLacotaType
- # Opportunity this recipient is associated with, when sending in the context of an
- # opportunity.
- : UUID
- # Contact this recipient corresponds to, when known.
- : UUID
- # Account this recipient corresponds to, when known.
- : UUID
- # Lead this recipient is associated with, when sending in the context of a lead.
- : UUID
- # Project this recipient is associated with, when sending in the context of a
- # project.
- : UUID
- # Quote this recipient is associated with, when sending in the context of a quote.
- : UUID
- # Custom entity records this recipient is associated with, each given as a
- # `CustomEntityID`.
- : [CustomEntityID]
- # Email address the message is sent to.
- : String!
- }