| ImapUploadMessage Method (String, IMail) |
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.IMAP
Assembly:
Mail (in Mail.dll) Version: 3.0.23341.1754
Syntax public long? UploadMessage(
string folder,
IMail email
)
Public Function UploadMessage (
folder As String,
email As IMail
) As Long?
public:
Nullable<long long> UploadMessage(
String^ folder,
IMail^ email
)
member UploadMessage :
folder : string *
email : IMail -> Nullable<int64>
Parameters
- folder
- Type: SystemString
Folder name to upload to. - email
- Type: Limilabs.MailIMail
Message to upload.
Return Value
Type:
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