TransactionalRescheduledEmail
Reschedules a transactional email to be sent at a different time.
Stored Procedure Specific Information
Id and SendAt inputs are required. For example:
exec TransactionalRescheduledEmail Id = '515abc', SendAt = '2025-08-01T10:10:10.23'
Input
| Name | Type | Required | Description |
| Id | String | True | The unique identifier of the scheduled email to be rescheduled, as returned by any messages/send call or messages/list-scheduled view. |
| SendAt | Datetime | True | The new Coordinated Universal Time (UTC) timestamp specifying when the message should be sent. |
Result Set Columns
| Name | Type | Description |
| Success | String | Indicates whether the rescheduling operation was successful. |
| Id | String | The unique identifier of the rescheduled message. |
| 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 is now scheduled to be sent after rescheduling. |
| FromEmail | String | The sender's email address associated with the rescheduled message. |
| To | String | The recipient's email address for the rescheduled message. |
| Subject | String | The subject line of the rescheduled email message. |