IGraphClient.Send

Send(string)

Send a message in the draft folder. The draft message can be a new message draft, reply draft, reply-all draft, or a forward draft. The message is then saved in the Sent Items folder.

public void Send(string itemId)
ParameterTypeDescription
itemIdStringItem id of the draft message

See Also


Send(MapiMessage)

Sends email message

public void Send(MapiMessage message)
ParameterTypeDescription
messageMapiMessageMapi message to send

See Also


Send(MapiMessage, bool)

Sends email message

public void Send(MapiMessage message, bool saveToSentItems)
ParameterTypeDescription
messageMapiMessageMapi message to send
saveToSentItemsBooleanIndicates whether to save the message in Sent Items.

See Also


Send(MailMessage)

Sends email message

public void Send(MailMessage message)
ParameterTypeDescription
messageMailMessageMailMessageMailMessage to send

See Also