| 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 |
22 lines
437 B
Python
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",
|
|
]
|