Send

_SendMail, SendMail

SendMail

Description 

 SendMail(
   char *Mail_To,
   char *Mail_Cc,
   char *Mail_Subject,
   char *Mail_Body,
   char *Mail_Attachment,
   bool  Mail_ShowUI
);

This function sends an e-mail to the mail recipient.

Parameters

char *Mail_To

Mail recipient.

char *Mail_Cc

Carbon copy recipient.

char *Mail_Subject

Subject field of the message.

char *Mail_Body

Text contents of the mail.

char *Mail_Attachment

The file or files that need to be attached to the e-mail. Full path to the file(s) should be specified. If more files are attached, they should be separated by ";" or "|".

bool Mail_ShowUI

If this value is TRUE (1) the standard dialog from the default e-mail client is shown and the user can make some changes there and then send this e-mail. If this value is FALSE (0), the e-mail is immediately send.

See Also 
_SendMail, _SendFile

_SendMail

Description 

 _SendMail();

This function sends a current picture or its part to the mail recipient. First it shows the dialog for specifying the name, file format, compression and the size. The size of sent picture is actually calculated by creating temporary picture. Then it displays dialog for an empty message with previously selected file as an attachment. This dialog comes from the default e-mail client program and keeps its default settings.

See Also 
_SendFile, SendMail