EwsUploadMessage Method (FolderId, Byte, Boolean)
Uploads raw message data into the specified folder on the MS Exchange server.

Namespace: MailBee.EwsMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public bool UploadMessage(
	FolderId id,
	byte[] bytes,
	bool isDraft
)

Parameters

id
Type: FolderId
The ID of the folder where to upload the message. Null reference (Nothing in Visual Basic) not allowed.
bytes
Type: SystemByte
The raw bytes of the mail message to be uploaded. Null reference not allowed.
isDraft
Type: SystemBoolean
If true, the message will be uploaded as draft; otherwise, as normal message.

Return Value

Type: Boolean
true if succeeded; otherwise, false.
Exceptions
ExceptionCondition
MailBeeExceptionAn error occurred and ThrowExceptions is true.
NotImplementedExceptionThe .NET runtime is .NET Core.
Remarks
See Also