The JScript.NET function call in the sample procedure needs to be modified. The boolean values need to be changed from 0 and 1 to false and true, respectively.
For example, the following code:
%Results:=%ScriptEval(JScript.NET,,%Procedure.Name,%MapName,"Metastorm.Extensions.SendMail.Send", %Recipients, %CC, %BCC, %Sender, %Title, %Body, 0, %Attachments, 1, "localhost", 25)
should be changed to:
%Results:=%ScriptEval(JScript.NET,,%Procedure.Name,%MapName,"Metastorm.Extensions.SendMail.Send", %Recipients, %CC, %BCC, %Sender, %Title, %Body, false, %Attachments, true, "localhost", 25 )