IEWSClient.AppendMessages

AppendMessages(params MailMessage[])

Uploads the mail message to the specified folder

public string[] AppendMessages(params MailMessage[] messages)
ParameterTypeDescription
messagesMailMessage[]A messages to upload

Return Value

List of uri of created messages

See Also


AppendMessages(IEnumerable<MailMessage>)

Uploads the mail message to the specified folder

public string[] AppendMessages(IEnumerable<MailMessage> messages)
ParameterTypeDescription
messagesIEnumerable`1A messages to upload

Return Value

List of uri of created messages

See Also


AppendMessages(string, params MailMessage[])

Uploads the mail message to the specified folder

public string[] AppendMessages(string folderUri, params MailMessage[] messages)
ParameterTypeDescription
folderUriStringA folder URI to which message is uploaded.
messagesMailMessage[]A messages to upload

Return Value

List of uri of created messages

See Also


AppendMessages(string, IEnumerable<MailMessage>)

Uploads the mail messages to the specified folder

public string[] AppendMessages(string folderUri, IEnumerable<MailMessage> messages)
ParameterTypeDescription
folderUriStringA folder URI to which message is uploaded.
messagesIEnumerable`1A messages to upload

Return Value

List of uri of created messages

See Also


AppendMessages(string, IEnumerable<MapiMessage>)

Uploads the mapi messages to the specified folder

public string[] AppendMessages(string folderUri, IEnumerable<MapiMessage> messages)
ParameterTypeDescription
folderUriStringA folder URI to which message is uploaded.
messagesIEnumerable`1A messages to upload

Return Value

List of uri of created messages

See Also