 | ImapUploadMessage(String, Byte) Method |
Uploads message to specified folder (mailbox). Uploaded message has
Seen set.
Internal date of the resulting message is set to the current date and time.
Namespace: Limilabs.Client.IMAPAssembly: Mail (in Mail.dll) Version: 3.0.26106.1555
Syntaxpublic long? UploadMessage(
string folder,
byte[] eml
)
Public Function UploadMessage (
folder As String,
eml As Byte()
) As Long?
public:
Nullable<long long> UploadMessage(
String^ folder,
array<unsigned char>^ eml
)
member UploadMessage :
folder : string *
eml : byte[] -> Nullable<int64> Parameters
- folder String
- Folder name to upload to.
- eml Byte
- Message to upload.
Return Value
NullableInt64Unique-id of the uploaded message (
Null if server does not support
UniqueIdPlus).
Remarks
IMAP servers may differ in the separator character used in folder hierarchy paths.
Common separator chars are '.' and '/'. For example: "Inbox/Folder" or "Inbox.Folder".
See Also