TransactionalCancelScheduledEmail
Cancels a transactional email that is scheduled for future delivery.
Stored Procedure Specific Information
Id input is required. For example:
exec TransactionalCancelScheduledEmail Id = '515abc'
Input
| Name | Type | Required | Description |
| Id | String | True | The unique identifier of the scheduled email to be canceled, as returned by any TransactionalSendMessage stored procedure or TransactionalScheduledEmails view. |
Result Set Columns
| Name | Type | Description |
| Success | String | Indicates whether the cancelation operation was successful. |
| Id | String | The unique identifier of the message that was canceled. |
| CreatedAt | Datetime | The Coordinated Universal Time (UTC) timestamp indicating when the message was originally created. |
| SendAt | Datetime | The Coordinated Universal Time (UTC) timestamp showing when the message was scheduled to be sent. |
| FromEmail | String | The sender's email address associated with the scheduled message. |
| To | String | The recipient's email address for the scheduled message. |
| Subject | String | The subject line of the scheduled email message. |