From Clomosy Docs

Revision as of 15:00, 24 December 2024 by ClomosyAdmin (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.');
}

Output:
SendMailOutputV1.0.png

See Also