TransactionalRescheduledEmail
Reschedule a scheduled email.
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 | A scheduled email Id, as returned by any of the messages/send calls or messages/list-scheduled. |
| SendAt | Datetime | True | The new UTC timestamp when the message should sent. |
Result Set Columns
| Name | Type | Description |
| Success | String | Whether the operation was successful. |
| Id | String | The message's unique Id. |
| CreatedAt | Datetime | The UTC timestamp when the message was created. |
| SendAt | Datetime | The UTC timestamp when the message will be sent. |
| FromEmail | String | The sending status of the recipient. |
| To | String | The email's sender address. |
| Subject | String | The email's subject. |