An email file entity
Properties
| Name | Access | Type | Description |
|---|---|---|---|
| DirectDownloadUrl | Read, Write | String | URL to directly download the file |
| DownloadUrl | Read, Write | String | URL to download the file |
| Errors | Read | IList of Error | Errors |
| FileName | Read, Write | String | Name of the file |
| ViewUrl | Read, Write | String | URL to view the file |
| Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $emailFile.HasErrors())
JavaScript
var booleanResponse = emailFile.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $emailFile.HasWarnings())
JavaScript
var booleanResponse = emailFile.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $emailFile.HasWarningsOrErrors())
JavaScript
var booleanResponse = emailFile.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$emailFile.ThrowErrors()
JavaScript
emailFile.ThrowErrors();