Skip to content

SMTP Send Email action

MarkAbrams edited this page Feb 5, 2024 · 1 revision

This is an example of JSON request and response message content for a mocked SMTP Send Email action.

Request

The exact fields will depend on how the action is configured in the workflow definition.

{
    "from": "do.not.reply@logicappunit.net",
    "to": "support@logicappunit.net",
    "subject": "This is the subject line",
    "body": "<html><body>This is the body of the email</body></html>",
    "importance": "Normal",
    "isHTML": true
}

Successful Response

The test case should respond with a HTTP 200 (OK) status code. The action does not generate any response content.

Clone this wiki locally