GetEmailFullContent
Returns the serialized HTML version of the email.
Execute
Sample EXECUTE GetEmailFullContent Id=23685
EXECUTE GetEmailFullContent Id=23685, EmailContentType='Text'
Input
Name | Type | Required | Description |
Id | String | True | The Id of the email. |
Status | String | False | Status filter for draft or approved versions. Defaults to approved if asset is approved, draft if not.
The allowed values are approved, draft. |
LeadId | String | False | The lead id to impersonate. Email is rendered as though it was received by this lead. |
EmailContentType | String | False | Email content type to return. Default is HTML.
The allowed values are HTML, Text. |
Result Set Columns
Name | Type | Description |
Id | String | The Id of the email. |
Content | String | The content of the email. |
Success | Boolean | Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details. |
Details | String | Details of execution failure. NULL if success=true. |