Function CSPMail::Send()
Description:
Seds the email.
 |
Prototype:
bool Send();
Arguments:
No arguments (void).
Return value:
If successful, it returns true. Otherwise, it returns false.
Remarks:
Before you call this member function, you should set the appropriate values for at least the member variables To, MailServer, SenderAddr, and Message
Examples:
CSPMail Mail; Mail.To = "info@micronovae.com"; Mail.From = "sender@somemail.net"; Mail.MailServer = "mailserver.somemail.net"; Mail.Subject = "CSP mail"; Mail.Message = "This is a CSP mail example"; Mail.Send();
|
|