outlook-email
Installation
SKILL.md
Outlook Email
Overview
This skill helps AI agents send, read, search, and automate emails through Microsoft Outlook via the Graph API. It covers sending messages (plain text, HTML, attachments, inline images), reading and searching mailboxes, folder management, mail rules, and email automation patterns.
Instructions
Authentication
// Same Azure AD app registration as other Microsoft 365 services
// Permissions needed:
// Mail.ReadWrite — read/write user's mail
// Mail.Send — send mail as user
// MailboxSettings.ReadWrite — manage rules, auto-replies
import { ClientSecretCredential } from '@azure/identity';
import { Client } from '@microsoft/microsoft-graph-client';
Related skills