arcade-mcp/toolkits/microsoft/arcade_microsoft/outlook_mail/__init__.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

22 lines
437 B
Python

from arcade_microsoft.outlook_mail.tools import (
create_and_send_email,
create_draft_email,
list_emails,
list_emails_in_folder,
reply_to_email,
send_draft_email,
update_draft_email,
)
__all__ = [
# Read
"list_emails",
"list_emails_in_folder",
# Send
"create_and_send_email",
"send_draft_email",
"reply_to_email",
# Write
"create_draft_email",
"update_draft_email",
]