ADO.NET Provider for Microsoft Office 365

Build 26.0.9655

CreateForward

Creates a draft of a forward that sends an existing email message to specified recipients.

Stored Procedure-Specific Information

To forward to a single recipient, enter:
    EXEC CreateForward MessageId = 'your_message_id_here', ToRecipients = '[email protected]'
To forward to multiple recipients, enter:
	EXEC CreateForward MessageId = 'your_message_id_here', ToRecipients = '[email protected];[email protected]', Comment = 'FYI'

Input

Name Type Required Description
MessageId String True Identifier of the email message to be forwarded.
ToRecipients String True Semicolon-separated list of recipient email addresses, such as [email protected]; [email protected].
Comment String False Optional comment or body content to include above the original message when forwarding.
UserId String False The identifier of the impersonated user on whose behalf the reply is being sent. Used in delegated access scenarios.

Result Set Columns

Name Type Description
Id String The ID of the Message that has been created as a draft.

Copyright (c) 2026 CData Software, Inc. - All rights reserved.
Build 26.0.9655