Skip to main content
Version: 2.1

Email

A collection of information to be used to initiate an email with a Contact or ContactList

Type

fdc3.email

Schema

https://fdc3.finos.org/schemas/2.1/context/email.schema.json

Details

PropertyTypeRequiredExample Value
typestringYes'fdc3.email'
recipientsfdc3.contact or fdc3.contactListYes{ type: "fdc3.contact", name: "John Doe", id: { "email": "john@sample.com" } }
subjectstringNo'The information you requested'
textBodystringNo'Blah, blah, bah

Example

const email = {
type: 'fdc3.email',
recipients: {
type: 'fdc3.contact',
name: 'Jane Doe',
id: {
email: 'jane.doe@example.com'
}
},
subject: 'The information you requested',
textBody: 'Blah, blah, blah ...'
}


fdc3.raiseIntent("StartEmail", email)

See Also

Other Types

Intents