From Clomosy Docs
Only premium accounts can use this.
function SendMailNoReplay(TitleStr, BodyStr, UserGUID :String):Boolean;
SendMailNoReply is used to send an email to the desired email address. When sending the email, the "TitleStr" parameter is used to specify the subject of the email, the "BodyStr" parameter is for the email content, and the final parameter is the recipient's email address.
Example
var
bodyStr, titleStr,email:string;
{
titleStr = 'Clomosy Information';
bodyStr ='Hello, a personalized email has been sent to you via the Clomosy application.';
email = 'xx@gmail.com';
if Clomosy.SendMailNoReplay(titleStr,bodyStr,email)
ShowMessage('Mail sent.')
else
ShowMessage('Mail could not be sent.');
}