Send Method
Sends the message.
Syntax
ANSI (Cross Platform) int Send(); Unicode (Windows) INT Send();
- (void)send;
#define MID_AMAZONSES_SEND 13 CLOUDMAIL_EXTERNAL int CLOUDMAIL_CALL CloudMail_AmazonSES_Do(void *lpObj, int methid, int cparam, void *param[], int cbparam[], int64 *lpllVal);
Remarks
This method sends the message specified by MessageHTML or MessageText.
Example (Send an Email)
component.AccessKey =
"my access key"
;
component.SecretKey =
"my secret key"
;
component.From =
"verified.email@host.com"
;
component.SendTo =
"recipient@mail.com"
;
component.Subject =
"Test SES Email"
;
component.MessageHTML =
"<html><body><b>Hello World!</b></body></html>"
;
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)