SendMail
Send mail.
Input
| Name | Type | Required | Description |
| Id | String | False | The Id of the message to be sent (this is optional). The user can either use an existing email Id or send a new email by optionally filling the other fields. |
| Subject | String | False | The email subject. |
| Content | String | False | Email body content. |
| Attachments | String | False | The attachments. Specify File attachments in the following format: filename1,filecontent1;filename2,filecontent2. Each filecontent can be either base64 data, or the path of a local file with the @ character before it |
| FileName | String | False | Name of the email attachment. |
| LocalFile | String | False | The file containing the content of the attachment |
| ContentBytes | String | False | Content of the attachment encoded to base 64. |
| ToRecipients | String | False | The recipients. Specify recipients in the following order: [email protected];[email protected]. |
| CcRecipients | String | False | The Cc: recipients for the message. Specify recipients in the following order: [email protected];[email protected]. |
| BccRecipients | String | False | The Bcc: recipients for the message. Specify recipients in the following order: [email protected];[email protected]. |
| SenderEmail | String | False | The email address on who's behalf email needs to be sent. Set this if you want to send email on behalf of other user's account. |
| FromEmail | String | False | The email address of the User from which email needs to be sent. Set this if you want to send email from other user's account. |
| UserId | String | False | Id of the Impersonated User. |
| ContentType | String | False | The content type of the email body.
The allowed values are text, html. The default value is text. |
Result Set Columns
| Name | Type | Description |
| Success | Boolean | If the request is sucessful. |