gmail
Send, read, and manage emails via Gmail. Use when asked to send an email, check inbox, read messages, draft emails, or manage Gmail.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Send, read, and manage emails via Gmail. Use when asked to send an email, check inbox, read messages, draft emails, or manage Gmail.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Test and document API endpoints - validate responses, check status, generate examples
Full company intelligence report - overview, team, funding, products, news
Research competitors - products, pricing, team, funding, and strategy
Enrich any person or company from any identifier — email, name, LinkedIn URL, domain, company name, Twitter/X handle. Use when asked to enrich, look up, or research a lead, contact, person, or company.
Extract structured data from web pages using AI
Build a sales prospect list of dental practices in a city — finds practices, decision makers, contact info, and buying signals. Use when asked to find dentists for outreach, prospect dental practices, build a lead list of dentists, or generate dental practice leads in a specific area.
| name | gmail |
| description | Send, read, and manage emails via Gmail. Use when asked to send an email, check inbox, read messages, draft emails, or manage Gmail. |
Send, read, and manage emails through Gmail integration. Connect to your Gmail account to send emails, check your inbox, read messages, create drafts, and more.
orth CLISend an email with optional attachments and formatting.
orth run gmail /send-email --body '{
"recipient_email": "user@example.com",
"body": "Hello, this is a test email.",
"subject": "Test Email"
}'
Parameters:
recipient_email (required) - Primary recipient's email addressbody (required) - Email content/messagesubject - Email subject linecc - CC recipients (comma-separated emails)bcc - BCC recipients (comma-separated emails)is_html - Send as HTML format (true/false)attachment - File attachment pathextra_recipients - Additional recipients arrayuser_id - Specific user ID to send asRetrieve emails from your inbox or specific folders.
orth run gmail /list-emails --body '{
"max_results": 10,
"query": "is:unread"
}'
Parameters:
query - Gmail search query (e.g., "is:unread", "from:user@example.com")label_ids - Specific Gmail label IDs to searchmax_results - Maximum number of emails to returnverbose - Include detailed email data (true/false)ids_only - Return only message IDs (true/false)include_payload - Include full message content (true/false)include_spam_trash - Include spam and trash folders (true/false)page_token - Token for paginationuser_id - Specific user ID to queryRetrieve a specific email by its message ID.
orth run gmail /get-email --body '{
"message_id": "MESSAGE_ID_HERE"
}'
Parameters:
message_id (required) - Gmail message ID to retrieveformat - Response format (full, metadata, minimal)user_id - Specific user ID to queryCreate a draft email for later sending.
orth run gmail /create-draft --body '{
"recipient_email": "user@example.com",
"body": "Draft email content",
"subject": "Draft Subject"
}'
Parameters:
recipient_email (required) - Primary recipient's email addressbody (required) - Email content/messagesubject (required) - Email subject linecc - CC recipients (comma-separated emails)bcc - BCC recipients (comma-separated emails)is_html - Draft as HTML format (true/false)thread_id - Thread ID to reply withinattachment - File attachment pathextra_recipients - Additional recipients arrayuser_id - Specific user ID to create draft asSend a quick email:
orth run gmail /send-email -b '{"recipient_email":"colleague@company.com","body":"The report is ready for review.","subject":"Report Ready"}'
Check unread emails:
orth run gmail /list-emails -b '{"query":"is:unread","max_results":5}'
Get a specific email:
orth run gmail /get-email -b '{"message_id":"17a1b2c3d4e5f6g7"}'
Create HTML draft:
orth run gmail /create-draft -b '{"recipient_email":"team@company.com","subject":"Weekly Update","body":"<h1>Weekly Report</h1><p>All tasks completed.</p>","is_html":true}'
query parameter (is:unread, from:email, has:attachment)max_results appropriately to avoid large responsesids_only=true for fast email countingis_html=true parameter