Skip to main content

Emailable

A message that is sent via email.

interface Emailable {
bcc(
after: String
before: String
first: Int
last: Int
): RecipientConnection
cc(
after: String
before: String
first: Int
last: Int
): RecipientConnection
to(
after: String
before: String
first: Int
last: Int
): RecipientConnection!
}

Fields

Emailable.bcc ● RecipientConnection object common

The "Bcc" recipients of the email.

Emailable.bcc.after ● String scalar common

Returns the elements in the list that come after the specified cursor.

Emailable.bcc.before ● String scalar common

Returns the elements in the list that come before the specified cursor.

Emailable.bcc.first ● Int scalar common

Returns the first n elements from the list.

Emailable.bcc.last ● Int scalar common

Returns the last n elements from the list.

Emailable.cc ● RecipientConnection object common

The "Cc" recipients of the email.

Emailable.cc.after ● String scalar common

Returns the elements in the list that come after the specified cursor.

Emailable.cc.before ● String scalar common

Returns the elements in the list that come before the specified cursor.

Emailable.cc.first ● Int scalar common

Returns the first n elements from the list.

Emailable.cc.last ● Int scalar common

Returns the last n elements from the list.

Emailable.to ● RecipientConnection! non-null object common

The "To" recipients of the email.

Emailable.to.after ● String scalar common

Returns the elements in the list that come after the specified cursor.

Emailable.to.before ● String scalar common

Returns the elements in the list that come before the specified cursor.

Emailable.to.first ● Int scalar common

Returns the first n elements from the list.

Emailable.to.last ● Int scalar common

Returns the last n elements from the list.

Implemented by

EmailMessage object ● ForwardedMessage object ● Reply object