EmailMessage.Forward Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Forward(MessageBody, EmailAddress[]) |
Forwards the message. |
Forward(MessageBody, IEnumerable<EmailAddress>) |
Forwards the message. |
Forward(MessageBody, EmailAddress[])
Forwards the message.
public:
void Forward(Microsoft::Exchange::WebServices::Data::MessageBody ^ bodyPrefix, ... cli::array <Microsoft::Exchange::WebServices::Data::EmailAddress ^> ^ toRecipients);
public void Forward (Microsoft.Exchange.WebServices.Data.MessageBody bodyPrefix, params Microsoft.Exchange.WebServices.Data.EmailAddress[] toRecipients);
Public Sub Forward (bodyPrefix As MessageBody, ParamArray toRecipients As EmailAddress())
Parameters
- bodyPrefix
- MessageBody
The prefix to prepend to the original body of the message.
- toRecipients
- EmailAddress[]
The recipients that receive the forwarded message.
Remarks
Calling this method results in a call to Exchange Web Services (EWS).
Applies to
Forward(MessageBody, IEnumerable<EmailAddress>)
Forwards the message.
public:
void Forward(Microsoft::Exchange::WebServices::Data::MessageBody ^ bodyPrefix, System::Collections::Generic::IEnumerable<Microsoft::Exchange::WebServices::Data::EmailAddress ^> ^ toRecipients);
public void Forward (Microsoft.Exchange.WebServices.Data.MessageBody bodyPrefix, System.Collections.Generic.IEnumerable<Microsoft.Exchange.WebServices.Data.EmailAddress> toRecipients);
Public Sub Forward (bodyPrefix As MessageBody, toRecipients As IEnumerable(Of EmailAddress))
Parameters
- bodyPrefix
- MessageBody
The prefix to prepend to the original body of the message.
- toRecipients
- IEnumerable<EmailAddress>
The recipients that receive the forwarded message.
Remarks
Calling this method results in a call to Exchange Web Services (EWS).