arcade-mcp/toolkits/microsoft/arcade_microsoft/outlook_mail/constants.py
Eric Gustin ef886bb503
Microsoft Outlook Mail Tools (#377)
| 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 |
2025-04-24 14:27:52 -07:00

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",
]