| Name | Description | |------------------------------|--------------------------------------------------------------------------------| | Microsoft.CreateDraftEmail | Compose a new draft email in Outlook | | Microsoft.UpdateDraftEmail | Update an existing draft email in Outlook | | Microsoft.CreateAndSendEmail | Create and immediately send a new email in Outlook to the specified recipients | | Microsoft.SendDraftEmail | Send an existing draft email in Outlook | | Microsoft.ReplyToEmail | Reply only to the sender of an existing email in Outlook | | Microsoft.ReplyAllToEmail | Reply to all recipients of an existing email in Outlook | | Microsoft.ListEmails | List emails in the user's mailbox across all folders | | Microsoft.ListEmailsInFolder | List the user's emails in the specified folder |
20 lines
367 B
Python
20 lines
367 B
Python
DEFAULT_SCOPE = "https://graph.microsoft.com/.default"
|
|
|
|
DEFAULT_MESSAGE_FIELDS = [
|
|
"bccRecipients",
|
|
"body",
|
|
"ccRecipients",
|
|
"conversationId",
|
|
"conversationIndex",
|
|
"flag",
|
|
"from",
|
|
"hasAttachments",
|
|
"importance",
|
|
"isDraft",
|
|
"isRead",
|
|
"receivedDateTime",
|
|
"replyTo",
|
|
"subject",
|
|
"toRecipients",
|
|
"webLink",
|
|
]
|