IQEmailOptions
@quik/communication / IQEmailOptions
Interface: IQEmailOptions
Defined in: communication/src/email/definition.ts:40
A list of options that can be passed when sending an email through the Email handling Service.
Properties
attachments?
optionalattachments?: (string|QEmailAttachment)[]
Defined in: communication/src/email/definition.ts:72
Optional list of attachments. Each entry is either a file path string or an inline content descriptor.
bcc?
optionalbcc?:string|string[]
Defined in: communication/src/email/definition.ts:60
Optional. Addresses that will be placed in BCC and hidden from recipients.
cc?
optionalcc?:string|string[]
Defined in: communication/src/email/definition.ts:56
Optional. Addresses that will be placed in CC.
from?
optionalfrom?:string
Defined in: communication/src/email/definition.ts:48
Optional. Overrides the default sender.
html?
optionalhtml?:string
Defined in: communication/src/email/definition.ts:70
Optional HTML content of the email.
replyTo?
optionalreplyTo?:string
Defined in: communication/src/email/definition.ts:62
Optional address used for replies.
sender?
optionalsender?:string
Defined in: communication/src/email/definition.ts:52
Optional. Sets the Sender header.
subject
subject:
string
Defined in: communication/src/email/definition.ts:66
The subject of the email.
text?
optionaltext?:string
Defined in: communication/src/email/definition.ts:68
Optional text content of the email.
to?
optionalto?:string|string[]
Defined in: communication/src/email/definition.ts:44
Optional. List of recipients used for the TO field.