Validate
Overview
Runs validation checks on the initialized email and returns a JSON object indicating the result of the validation and any identified issuesSyntax
Validate()
Example
This sample code calls Validate() on the initialized email object and writes out the results from the returned JSON object:
var myEmail = Email.Init("myEmail");
var results = myEmail.Validate();
Write(results.Task.ValidationStatus);
Write(results.Task.ValidationMessages);