SES
How to send the query
Description
<ses> - command which is responsible for sending the SES queries in testing scenarios
Required parameters:
comment
alias
destination - parameter is used to specify the recipients of the email
source - parameter refers to the sender's email address
message
body - parameter encompasses the content of the email
- html
- text
subject - contains the subject line of the email
Optional parameters:
- condition - the condition according to which this test step will or won't be executed
- threshold - parameter, that sets the maximum allowed test step execution time
<ses comment="Sending a message to the email"
alias="ALIAS">
<destination>example@gmail.com</destination>
<source>examplehello@gmail.com</source>
<message>
<body>
<html>Amazon SES test</html>
<text>Hello World</text>
</body>
<subject>TITLE</subject>
</message>
</ses>