Send method

Future<void> Send()
Forwards the message. Calling this method results in a call to EWS. The prefix to prepend to the original body of the message. The recipients to forward the message to. Forwards the message. Calling this method results in a call to EWS. The prefix to prepend to the original body of the message. The recipients to forward the message to. Sends this e-mail message. Calling this method results in at least one call to EWS.

Implementation

// void Forward(MessageBody bodyPrefix, List<EmailAddress> toRecipients)
//        {
//            this.Forward(bodyPrefix, (Iterable<EmailAddress>)toRecipients);
//        }

/// <summary>
/// Forwards the message. Calling this method results in a call to EWS.
/// </summary>
/// <param name="bodyPrefix">The prefix to prepend to the original body of the message.</param>
/// <param name="toRecipients">The recipients to forward the message to.</param>
// void Forward(MessageBody bodyPrefix, Iterable<EmailAddress> toRecipients)
//        {
//            ResponseMessage responseMessage = this.CreateForward();
//
//            responseMessage.BodyPrefix = bodyPrefix;
//            responseMessage.ToRecipients.AddRange(toRecipients);
//
//            responseMessage.SendAndSaveCopy();
//        }

/// <summary>
/// Sends this e-mail message. Calling this method results in at least one call to EWS.
/// </summary>
Future<void> Send() async {
  await this._InternalSend(null, MessageDisposition.SendOnly);
}