Microsoft Outlook Email
O Microsoft Outlook permite reunir todas as suas contas de e-mail e calendários em um único local.
Comece grátisCategoria
Compatível com
IA Compatível
Ferramentas
Adicionar rótulo ao e-mail
Adiciona um rótulo/categoria a um e-mail no Microsoft Outlook. Consulte a documentação
Aprovar Fluxo de Trabalho
Suspenda o fluxo de trabalho até que seja aprovado por e-mail. Veja a documentação
Criar Contato
Adicione um contato à pasta raiz de Contatos, Consulte a documentação
Criar rascunho de e-mail
Crie um e-mail em rascunho, Consulte a documentação
Create Draft Reply
Create a draft reply to an email. See the documentation
Baixar Anexo
Baixa um anexo para o diretório /tmp. Veja a documentação
Procurar Contatos
Encontra contatos com a string de busca fornecida. Consulte a documentação
Encontrar e-mail
Pesquise um e-mail no Microsoft Outlook. Veja a documentação
Procurar e-mail da pasta compartilhada
Pesquise um e-mail em uma pasta compartilhada no Microsoft Outlook. Consulte a documentação
Get Current User
Returns the authenticated Microsoft user's ID, display name, email, and principal name via Microsoft Graph. Call this first when the user says 'my emails', 'my inbox', or needs identity context. Use the returned id to scope queries in **Find Email** or identify the sender in email results. See the documentation.
Get Folder
Retrieve a single mail folder by its ID. Returns the folder's id, displayName, parentFolderId, childFolderCount, totalItemCount, and unreadItemCount. If you only have a display name and need the ID, use **List Folders** first. See the documentation
Get Message
Fetch a single email message by its Microsoft Graph message ID, including full body and optional attachments. Use **Find Email** first to search for messages and obtain a message id; then call this tool to retrieve the full content. Set includeAttachments: true to expand attachment metadata — the id field of each attachment is required by **Download Attachment**. Example: after find-email(search="Eval-Festivus") returns a message with id: "AAMk...", call get-message(messageId="AAMk...", includeAttachments=true) to get the body text and attachment list. See the documentation
Get Shared Folder
Retrieve a single folder from a shared mailbox by its ID. Returns the folder's id, displayName, parentFolderId, childFolderCount, totalItemCount, and unreadItemCount. If you only have a display name and need the ID, use **List Shared Folders** first. See the documentation
List Contact Options
Retrieves available options for the Contact field.
Listar contatos
Obtenha uma coleção de contatos da pasta de contatos padrão, Veja a documentação
List Folder IDs to Monitor Options
Retrieves available options for the Folder IDs to Monitor field.
Listar Pastas
Obtém uma lista de todas as pastas do Microsoft Outlook. Consulte a documentação
List Important Mail
Get the most important mail from the user's Inbox (messages with high importance or flagged status). Returns { count, data } where count is the true total matching message count reported by Microsoft Graph (@odata.count for the applied filter) and data is the array of retrieved messages (up to maxResults). See the documentation
Listar Etiquetas
Obter todos os rótulos/categorias que foram definidos para um usuário. Consulte a documentação Retorne apenas o texto traduzido sem explicações.
List Shared Folders
Retrieves mail folders from a shared or delegated mailbox (routes to /users/{userId}/mailFolders). Returns { count, folders } where folders contains each folder's id, displayName, parentFolderId, childFolderCount, totalItemCount, and unreadItemCount. The count field reflects the true API total when Microsoft Graph returns @odata.count; when Include Subfolders is true or Graph does not return @odata.count for the requested filter, count equals the number of folders actually retrieved. **Use this action to resolve a shared mailbox folder display name to its ID** — set Display Name to filter by exact name. Use **Get Shared Folder** instead when you already have the folder ID. See the documentation
Modify Email
Apply one or more state mutations to an email message: mark read/unread, add/remove categories, move to a folder, or change the flag status. All params except messageId are optional — only the ones you provide are applied. Use **Find Email** to obtain a message id before modifying. Recipes: Mark read: isRead: true | Mark unread: isRead: false Add category: addCategories: ["Follow Up"] | Remove category: removeCategories: ["Follow Up"] Move to archive: destinationFolderId: "archive" | Move to inbox: destinationFolderId: "inbox" Flag: flagStatus: "flagged" | Unflag: flagStatus: "notFlagged" | Mark complete: flagStatus: "complete" Example: modify-email(messageId="AAMk...", isRead=true) → marks the message as read. Example: modify-email(messageId="AAMk...", addCategories=["Eval-Seinfeld"], destinationFolderId="archive") → adds a category AND moves to archive in a single call. See the documentation
Mover e-mail para a pasta
Move um e-mail para a pasta especificada no Microsoft Outlook. Consulte a documentação
Remover rótulo do e-mail
Remove uma etiqueta/categoria de um e-mail no Microsoft Outlook. Consulte a documentação
Responder ao e-mail
Responder a um e-mail no Microsoft Outlook. Veja a documentação Retorne apenas o texto traduzido, sem explicações.
Save Contact
Create or update an Outlook contact (upsert). Omit contactId to create a new contact; provide contactId to update an existing one. Use **Find Contacts** first to look up a contact's id before updating. Example (create): save-contact(givenName="Cosmo", surname="Kramer", emailAddresses=["[email protected]"]) → creates contact, returns new contact object with id. Example (update): save-contact(contactId="AQMk...", businessPhones=["+1-555-0100"]) → patches the existing contact. See the create documentation See the update documentation
Enviar e-mail
Envie um e-mail para um ou mais destinatários, Veja a documentação
Atualizar Contato
Atualize um contato existente, Consulte a documentação