ActionsmailToVersion: 4.62On this pagemailTo Opens the device's default e-mail app and pre-fills the inputs with the provided data to send an e-mail. Field Configurations KeyTypeDescriptionDefault Value"params" (required)Objectundefinednull Parameters KeyTypeDescriptionDefault Value"async"BooleanSpecifies whether the action should perform asynchronously.null"bcc"StringEmail address for a blind copy.null"cc"StringEmail adress for a copy.null"content" (required)StringContent of the email.null"subject"StringSubject of the email.null"to" (required)StringEmail address of the receiver.null Inherited From Base ActionBase ActionField ConfigurationsKeyTypeDescriptionDefault Value"dynamicParams"ObjectDynamic params to retrieve data from a specific context e.g. a userSetting.null"leadingDelimiter"StringThe leading mustache delimiter to use.null"params"Object,ArrayObject containing the properties of the action.null"trailingDelimiter"StringThe trailing mustache delimiter to use.null"type"StringType name of the action.null Examples Example 1: Send an email Show ExampleHide ExampleThe to, cc and bcc parameters contain the corresponding email adresses. The subject and content parameters specify the subject and content of the email respectively.{ "type": "mailTo", "params": { "to": "kontakt@fabrik19.de", "cc": "kontakt@distama.de", "bcc": "kontakt@gleis82.de", "subject": "This is a test mail", "content": "I really like what you do!" }}