send Method
Sends the message.
Syntax
def send() -> None: ...
Remarks
This method sends the message specified by message_html or message_text.
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>"
;