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