The email connector call requires 3 input parameters to be defined:
| receiver | The email address of the receiver. Several email addresses can be specified separated by a comma | String |
| subject | The subject of your message | String |
| msg | The message itself | String |
All data types should be set as String.
There are 3 optional parameters that can be configured as well:
| receiverCC | The email address of the copy receiver. Several email addresses can be specified separated by a comma | String |
| receiverBCC | The email address of the blind copy receiver. Several email addresses can be specified separated by a comma | String |
| sender | The email address of the sender | String |
| attachments | A list of all attachments | List[ByteAttachment] |
ByteAttachment
{
"session": String,
"fileName": String,
"attachmentMimeType": String
}
| session | The session id of an uploaded file by the HTMLUploader in the frontend. |
| fileName | The filename which will be displayed in the email |
| attachmentMimeType | The file’s MIME type, representing the file’s encoding e.g. image/jpeg, audio/wav, text/xml etc. |
Example:












