بنقرة واحدة
microsoft-outlook
Send emails, read the inbox, or manage calendar events in Microsoft Outlook
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Send emails, read the inbox, or manage calendar events in Microsoft Outlook
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Read or update contacts, opportunities, notes, and conversations in GoHighLevel
Save or retrieve records from Airtable bases
Send emails, SMS, or manage contacts via Brevo (formerly Sendinblue)
Manage bookings, availability, and event types in Cal.com
Check availability, create scheduling links, or list upcoming events in Calendly
Create or update tasks and lists in ClickUp
| name | microsoft_outlook |
| display_name | Microsoft Outlook |
| description | Send emails, read the inbox, or manage calendar events in Microsoft Outlook |
| auth_type | oauth2 |
| category | communication |
When the user wants their voice agent to send emails or manage calendar events via Outlook. Common triggers:
Check connection via check_connection("microsoft_outlook").
If not connected: Use secret("microsoft_outlook") in tool scripts. The system
will automatically emit the correct action card based on the platform
configuration. Do NOT emit action cards manually.
No discovery needed: The Graph API uses /me for the authenticated user's
mailbox and calendar.
{
"name": "microsoft_outlook.send_email",
"description": "Send a follow-up email to the caller via Outlook",
"params": [
{"name": "to_email", "description": "Recipient's email address", "type": "string", "required": true},
{"name": "subject", "description": "Email subject", "type": "string", "required": true},
{"name": "body", "description": "Email body text", "type": "string", "required": true}
],
"script": "let key = secret('microsoft_outlook');\nlet msg = {message: {subject: subject, body: {contentType: 'Text', content: body}, toRecipients: [{emailAddress: {address: to_email}}]}};\nlet resp = http_post_h('https://graph.microsoft.com/v1.0/me/sendMail', msg, {'Authorization': 'Bearer ' + key, 'Content-Type': 'application/json'});\nif (resp.status === 202 || (resp.status >= 200 && resp.status < 300)) { return 'Email sent.'; }\nthrow new Error(`Outlook ${resp.status}: ${resp.body}`);",
"side_effect": true
}
{
"name": "microsoft_outlook.create_event",
"description": "Create a calendar event in Outlook",
"params": [
{"name": "subject", "description": "Event title", "type": "string", "required": true},
{"name": "start_datetime", "description": "Start time in ISO 8601 format (e.g. '2025-06-15T10:00:00')", "type": "string", "required": true},
{"name": "end_datetime", "description": "End time in ISO 8601 format", "type": "string", "required": true},
{"name": "timezone", "description": "Timezone (e.g. 'America/New_York')", "type": "string", "required": false}
],
"script": "let key = secret('microsoft_outlook');\nlet tz = timezone || 'UTC';\nlet body = {subject: subject, start: {dateTime: start_datetime, timeZone: tz}, end: {dateTime: end_datetime, timeZone: tz}};\nlet resp = http_post_h('https://graph.microsoft.com/v1.0/me/calendar/events', body, {'Authorization': 'Bearer ' + key, 'Content-Type': 'application/json'});\nif (resp.status >= 200 && resp.status < 300) { return 'Event created.'; }\nthrow new Error(`Outlook ${resp.status}: ${resp.body}`);",
"side_effect": true
}
secret("microsoft_outlook") for credentialshttps://graph.microsoft.com/v1.0sendMail returns HTTP 202 Accepted on success (not 200)UTC if not providedthrow using resp.status/resp.body