{"id":203,"date":"2026-05-19T00:00:00","date_gmt":"2026-05-19T00:00:00","guid":{"rendered":"https:\/\/local.paioclawblog.com\/openclaw-email-skill\/"},"modified":"2026-05-19T00:00:00","modified_gmt":"2026-05-19T00:00:00","slug":"openclaw-email-skill","status":"publish","type":"post","link":"https:\/\/paioclaw.ai\/blog\/openclaw-email-skill\/","title":{"rendered":"How to Set Up the OpenClaw Email Skill (Gmail, IMAP, SMTP)"},"content":{"rendered":"\n<div>\n<p>Email is the canonical AI agent use case \u2014 and the most dangerous one to get wrong. An AI that reads your email and drafts replies is useful. An AI that autonomously sends email on your behalf can cause real damage: sending premature responses, triggering unsubscribes, or delivering confidential information to the wrong thread.<\/p>\n<p>This guide covers all three auth flavors for the OpenClaw email skill, enforces the draft-only safety pattern as the starting point, and walks through a triage recipe that auto-labels and writes drafts but never sends without your explicit action.<\/p>\n<h2 id=\"three-auth-flavors\">Three Auth Flavors<\/h2>\n<h3>Gmail with OAuth 2.0 (Recommended for Gmail Users)<\/h3>\n<p>OAuth is the correct approach for Gmail. It grants scoped access without exposing your password, and you can revoke it at any time from your Google Account settings.<\/p>\n<p><strong>Setup:<\/strong><\/p>\n<ol>\n<li>Go to <a href=\"https:\/\/console.cloud.google.com\" target=\"_blank\" rel=\"noopener noreferrer\">console.cloud.google.com<\/a><\/li>\n<li>Create a new project (or use an existing one)<\/li>\n<li>Enable the Gmail API under <strong>APIs &amp; Services \u2192 Library<\/strong><\/li>\n<li>Go to <strong>APIs &amp; Services \u2192 Credentials \u2192 Create Credentials \u2192 OAuth 2.0 Client ID<\/strong><\/li>\n<li>Application type: Desktop app<\/li>\n<li>Download the credentials JSON file<\/li>\n<\/ol>\n<p><strong>Scopes to request:<\/strong><\/p>\n<div><pre><code>https:\/\/www.googleapis.com\/auth\/gmail.readonly      # Read emails\nhttps:\/\/www.googleapis.com\/auth\/gmail.modify         # Add labels, mark read\nhttps:\/\/www.googleapis.com\/auth\/gmail.compose        # Create drafts\n<\/code><\/pre><\/div>\n<p>Do not request <code>gmail.send<\/code> scope unless you intend to enable auto-send. Requesting only <code>gmail.compose<\/code> means OpenClaw can create drafts but cannot send \u2014 a useful architectural constraint.<\/p>\n<p><strong>Run the OAuth flow:<\/strong><\/p>\n<div><pre><code>@openclaw setup gmail oauth\n<\/code><\/pre><\/div>\n<p>OpenClaw opens a browser window for Google authorization. After you approve, it stores the refresh token securely. Access tokens are generated automatically from the refresh token \u2014 you don&#8217;t manage them manually.<\/p>\n<div><pre><code>gmail:\n  credentials_file: \"~\/.openclaw\/gmail-credentials.json\"\n  token_file: \"~\/.openclaw\/gmail-token.json\"\n  scopes:\n    - \"https:\/\/www.googleapis.com\/auth\/gmail.readonly\"\n    - \"https:\/\/www.googleapis.com\/auth\/gmail.modify\"\n    - \"https:\/\/www.googleapis.com\/auth\/gmail.compose\"\n<\/code><\/pre><\/div>\n<h3>IMAP + SMTP (For Non-Gmail or Self-Hosted Email)<\/h3>\n<p>IMAP reads email; SMTP sends it. Together they cover the full email workflow for any provider that supports standard protocols: Outlook, FastMail, ProtonMail (with Bridge), Zoho, custom domains hosted anywhere.<\/p>\n<div><pre><code>email:\n  imap:\n    host: \"imap.yourprovider.com\"\n    port: 993\n    ssl: true\n    username: \"you@yourdomain.com\"\n    password: \"${EMAIL_PASSWORD}\"  # Use env var, never hardcode\n  smtp:\n    host: \"smtp.yourprovider.com\"\n    port: 587\n    tls: true\n    username: \"you@yourdomain.com\"\n    password: \"${EMAIL_PASSWORD}\"\n<\/code><\/pre><\/div>\n<p><strong>Common provider settings:<\/strong><\/p>\n<div><table><thead><tr><th>Provider<\/th><th>IMAP Host<\/th><th>IMAP Port<\/th><th>SMTP Host<\/th><th>SMTP Port<\/th><\/tr><\/thead><tbody><tr><td>Gmail<\/td><td>imap.gmail.com<\/td><td>993<\/td><td>smtp.gmail.com<\/td><td>587<\/td><\/tr><tr><td>Outlook<\/td><td>outlook.office365.com<\/td><td>993<\/td><td>smtp.office365.com<\/td><td>587<\/td><\/tr><tr><td>FastMail<\/td><td>imap.fastmail.com<\/td><td>993<\/td><td>smtp.fastmail.com<\/td><td>587<\/td><\/tr><tr><td>Zoho<\/td><td>imap.zoho.com<\/td><td>993<\/td><td>smtp.zoho.com<\/td><td>587<\/td><\/tr><\/tbody><\/table><\/div>\n<p><strong>Gmail-specific note:<\/strong> If you use Gmail via IMAP\/SMTP instead of OAuth, you need to enable &#8220;Less secure app access&#8221; or generate an App Password if 2FA is on. The OAuth approach above is cleaner \u2014 IMAP\/SMTP with Gmail is a fallback for specific setups.<\/p>\n<h3>Gmail via Google Workspace Service Account (Team\/Enterprise)<\/h3>\n<p>If you&#8217;re managing email for a Google Workspace organization and want OpenClaw to access multiple accounts, service accounts with domain-wide delegation allow this without per-user OAuth flows.<\/p>\n<p>This is an enterprise pattern. For personal use, stick with OAuth 2.0.<\/p>\n<div><pre><code>gmail_workspace:\n  service_account_file: \"~\/.openclaw\/service-account.json\"\n  delegate_to: \"user@yourdomain.com\"\n  scopes:\n    - \"https:\/\/www.googleapis.com\/auth\/gmail.readonly\"\n    - \"https:\/\/www.googleapis.com\/auth\/gmail.compose\"\n<\/code><\/pre><\/div>\n<p>Service accounts require a Google Workspace admin to enable domain-wide delegation \u2014 not available on personal Gmail accounts.<\/p>\n<h2 id=\"draft-only-safety-pattern-why-its-the-default\">Draft-Only Safety Pattern: Why It&#8217;s the Default<\/h2>\n<p>Before configuring what OpenClaw does with email, understand why draft-only is the correct starting point.<\/p>\n<p><strong>What can go wrong with auto-send:<\/strong><\/p>\n<ul>\n<li>Replying to a phishing email thinking it&#8217;s legitimate<\/li>\n<li>Sending an internal thread context to an external party in a forwarded reply<\/li>\n<li>Responding to a newsletter with a personal message because the AI misidentified it<\/li>\n<li>Confirming a meeting you haven&#8217;t actually checked your calendar for<\/li>\n<li>Sending a draft you marked &#8220;needs more thought&#8221; to the wrong thread<\/li>\n<\/ul>\n<p>None of these are hypothetical. They happen. Draft-only mode prevents all of them.<\/p>\n<p><strong>The draft-only guarantee:<\/strong> In draft-only mode, OpenClaw never calls any send endpoint. It can create drafts (saved in your Drafts folder), add labels, mark emails read\/unread, and archive \u2014 but no email leaves your outbox without you clicking Send.<\/p>\n<div><pre><code>email_skill:\n  mode: draft-only  # draft-only | supervised | auto-send\n  # Start here. Always.\n<\/code><\/pre><\/div>\n<p><strong>Supervised mode<\/strong> (the intermediate step): OpenClaw drafts replies and flags them for your approval. You review a daily queue of pending sends and approve or discard each. Good for high-volume, repetitive email like scheduling requests or standard customer responses.<\/p>\n<p><strong>Auto-send mode<\/strong> (advanced, use sparingly): Only for specific, well-defined email types with clear rules. Example: auto-confirming receipt of support tickets with a template response. Never for substantive replies.<\/p>\n<h2 id=\"triage-recipe-label-draft-never-send\">Triage Recipe: Label, Draft, Never Send<\/h2>\n<p>This is the highest-value use of the email skill. It handles the tedious work \u2014 reading, categorizing, writing draft responses \u2014 while keeping you in control of everything that leaves your inbox.<\/p>\n<h3>Setup<\/h3>\n<p>Configure your label taxonomy first. These are the labels OpenClaw will apply:<\/p>\n<div><pre><code>email_labels:\n  - name: \"ai\/needs-reply\"\n    color: red\n    description: \"Requires a response\"\n  - name: \"ai\/fyi-only\"\n    color: blue\n    description: \"No action needed, just awareness\"\n  - name: \"ai\/waiting-on-them\"\n    color: yellow\n    description: \"Ball in their court\"\n  - name: \"ai\/draft-ready\"\n    color: green\n    description: \"Draft reply created, needs review\"\n  - name: \"ai\/newsletter\"\n    color: gray\n    description: \"Marketing\/newsletter, low priority\"\n<\/code><\/pre><\/div>\n<p>Create these in Gmail under Settings \u2192 Labels, or let OpenClaw create them:<\/p>\n<div><pre><code>@openclaw create my email triage labels\n<\/code><\/pre><\/div>\n<h3>The Triage Workflow<\/h3>\n<div><pre><code>@openclaw triage my inbox \u2014 label everything from the last 24 hours\n<\/code><\/pre><\/div>\n<p>For each email in the past 24 hours, OpenClaw:<\/p>\n<ol>\n<li><strong>Reads<\/strong> sender, subject, body, and thread history<\/li>\n<li><strong>Classifies<\/strong> the email:\n<ul>\n<li>Is a reply required? (Needs-Reply)<\/li>\n<li>Is it informational? (FYI-Only)<\/li>\n<li>Is it a newsletter or marketing? (Newsletter)<\/li>\n<li>Is it something you&#8217;re waiting on a response for? (Waiting-On-Them)<\/li>\n<\/ul>\n<\/li>\n<li><strong>Labels<\/strong> accordingly<\/li>\n<li><strong>For Needs-Reply emails:<\/strong> Drafts a reply and saves it to Drafts folder, then applies the <code>ai\/draft-ready<\/code> label<\/li>\n<li><strong>Summarizes<\/strong> what it did<\/li>\n<\/ol>\n<p><strong>Triage summary output:<\/strong><\/p>\n<div><pre><code>? Inbox Triage \u2014 May 19, 2026\n\nProcessed 23 emails:\n\u2022 4 \u2192 Needs Reply (drafts created)\n\u2022 11 \u2192 FYI Only (labeled, marked read)\n\u2022 6 \u2192 Newsletter (labeled)\n\u2022 2 \u2192 Waiting On Them (labeled)\n\nDrafts ready for review:\n1. Re: Project proposal from Sarah Chen \u2014 draft in Drafts folder\n2. Re: Invoice #4421 query \u2014 draft in Drafts folder  \n3. Re: Meeting reschedule request \u2014 draft in Drafts folder\n4. Re: Partnership inquiry \u2014 draft in Drafts folder\n\nReview drafts, edit as needed, then send. Nothing has been sent.\n<\/code><\/pre><\/div>\n<h3>Reviewing Drafts<\/h3>\n<div><pre><code>@openclaw show me the drafts you created today\n<\/code><\/pre><\/div>\n<div><pre><code>Draft 1\/4: Re: Project proposal from Sarah Chen\nTo: sarah@company.com\nSubject: Re: Project proposal\n\nHi Sarah,\n\nThanks for sending this over. I've had a chance to review the proposal \nand have a few questions before we move forward:\n\n1. What's the expected timeline for the discovery phase?\n2. Is the budget estimate inclusive of all third-party tools?\n3. Who would be the primary point of contact on your team?\n\nHappy to jump on a call this week if that's easier. Let me know \nwhat works for you.\n\nBest,\n[Your name]\n\n[SEND] [EDIT] [DISCARD]\n<\/code><\/pre><\/div>\n<p>You send directly from your email client (Gmail, Outlook, etc.) or approve from the OpenClaw interface if you&#8217;re using PaioClaw&#8217;s web UI.<\/p>\n<h3>Auto-Triage on Schedule<\/h3>\n<div><pre><code>@openclaw triage my inbox every morning at 8am\n<\/code><\/pre><\/div>\n<p>OpenClaw sets a daily job. Each morning at 8am, your inbox is labeled and drafts are waiting in your Drafts folder before you open your email.<\/p>\n<h3>Smart Reply Drafting<\/h3>\n<p>The quality of drafted replies depends on context. Give OpenClaw more context for better drafts:<\/p>\n<div><pre><code>@openclaw when drafting replies, here's context about me:\n- I'm a freelance product consultant\n- Standard project rate is $150\/hour\n- I prefer async communication over calls when possible\n- I'm usually available Mon-Thu for new project discussions\n<\/code><\/pre><\/div>\n<p>OpenClaw stores this in your preferences and uses it when drafting. The partnership inquiry draft will mention your rate. The meeting request draft will suggest Tuesday or Wednesday.<\/p>\n<h2 id=\"thread-summarization\">Thread Summarization<\/h2>\n<p>For long email threads you&#8217;ve been CC&#8217;d on:<\/p>\n<div><pre><code>@openclaw summarize the thread \"Re: Q3 Product Roadmap\" and tell me if I need to do anything\n<\/code><\/pre><\/div>\n<div><pre><code>Thread Summary: Q3 Product Roadmap (14 emails, May 10-19)\n\nThe team debated scope for Q3. Main discussion: whether to prioritize \nthe mobile redesign or the API performance improvements.\n\nDecision reached on May 17: API performance takes priority. Mobile \nredesign pushed to Q4.\n\nYour involvement: You were CC'd but haven't responded. Marcus asked \non May 15 if you had bandwidth to consult on the API work \u2014 that \nquestion appears unanswered.\n\nSuggested action: Reply to Marcus's May 15 email about API consulting.\n<\/code><\/pre><\/div>\n<h2 id=\"priority-inbox-pattern\">Priority Inbox Pattern<\/h2>\n<div><pre><code>@openclaw when I open my email, tell me the 3 things I actually need to deal with today\n<\/code><\/pre><\/div>\n<div><pre><code>Morning Email Priority \u2014 May 19, 2026\n\n1. ? REPLY NEEDED: Invoice dispute from Client Corp \u2014 3 days old, needs response\n2. ? DECISION: Team async vote closing today at 5pm \u2014 you haven't voted\n3. ? FYI: Your domain renewal is in 7 days \u2014 action optional but noted\n\nEverything else can wait. 18 other emails labeled and triaged.\n<\/code><\/pre><\/div>\n<h2 id=\"handling-sensitive-email\">Handling Sensitive Email<\/h2>\n<p>OpenClaw reads all email it has access to. For sensitive email (legal, HR, confidential communications), you should either:<\/p>\n<ol>\n<li>\n<p><strong>Exclude specific labels or senders<\/strong> from OpenClaw&#8217;s triage:<\/p>\n<div><pre><code>email_skill:\n  exclude_labels: [\"Legal\", \"Confidential\", \"HR\"]\n  exclude_senders: [\"lawyer@firm.com\", \"hr@company.com\"]\n<\/code><\/pre><\/div>\n<\/li>\n<li>\n<p><strong>Use a separate email account<\/strong> for sensitive correspondence that OpenClaw doesn&#8217;t have access to<\/p>\n<\/li>\n<\/ol>\n<p>The OAuth scope approach helps here \u2014 by not granting <code>gmail.send<\/code>, you ensure OpenClaw can never send from your account even if it reads sensitive content.<\/p>\n<h2 id=\"paioclaw-vs-self-hosted\">PaioClaw vs. Self-Hosted<\/h2>\n<p>The email skill runs self-hosted without issues for personal Gmail and IMAP setups. The differences with PaioClaw:<\/p>\n<p><strong>OAuth token management:<\/strong> Gmail OAuth tokens need refresh. PaioClaw handles this and alerts you if re-authorization is needed. Self-hosted setups fail silently if a token expires overnight.<\/p>\n<p><strong>Mobile review workflow:<\/strong> PaioClaw&#8217;s mobile interface lets you review and approve drafts from your phone. Self-hosted requires opening your email client, finding drafts, and editing there.<\/p>\n<p><strong>Multi-account setups:<\/strong> If you manage multiple email accounts (personal, work, consulting), routing triage across all of them from one interface is more complex to self-host.<\/p>\n<p>Plans start free, Smart at $15\/mo, Genius at $25\/mo.<\/p>\n<h2 id=\"summary\">Summary<\/h2>\n<p>Set up Gmail OAuth with the <code>gmail.compose<\/code> scope (not <code>gmail.send<\/code>), configure triage labels, and start with the morning triage recipe. This setup gives you labeled email, drafted replies, and a daily priority summary \u2014 without any risk of autonomous sending.<\/p>\n<p>The triage recipe is where the skill pays for itself. Spending 5 minutes reviewing 4 drafted replies beats spending 40 minutes writing them from scratch. The AI doesn&#8217;t replace your judgment on what to say \u2014 it handles the mechanical work of writing a first draft based on context you&#8217;ve provided.<\/p>\n<p>Never move to auto-send mode until you&#8217;ve reviewed at least 4-6 weeks of draft output and are confident in the quality. Even then, restrict auto-send to low-stakes, templated responses only.<\/p><\/div>\n","protected":false},"excerpt":{"rendered":"<p>PaioClaw gives you a private, always-on AI assistant powered by your own API keys. No Docker, no command line \u2014 sign up and it&#8217;s ready in 60 seconds.<\/p>\n","protected":false},"author":0,"featured_media":204,"comment_status":"","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[],"class_list":["post-203","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-how-to"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Set Up the OpenClaw Email Skill (Gmail, IMAP, SMTP) - PaioClaw<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/paioclaw.ai\/blog\/openclaw-email-skill\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Set Up the OpenClaw Email Skill (Gmail, IMAP, SMTP) - PaioClaw\" \/>\n<meta property=\"og:description\" content=\"PaioClaw gives you a private, always-on AI assistant powered by your own API keys. No Docker, no command line \u2014 sign up and it&#039;s ready in 60 seconds.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/paioclaw.ai\/blog\/openclaw-email-skill\/\" \/>\n<meta property=\"og:site_name\" content=\"PaioClaw\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/paioclaw\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-19T00:00:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/paioclaw.ai\/blog\/wp-content\/uploads\/2026\/05\/openclaw-email-skill.png\" \/>\n\t<meta property=\"og:image:width\" content=\"852\" \/>\n\t<meta property=\"og:image:height\" content=\"341\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@PaioClaw\" \/>\n<meta name=\"twitter:site\" content=\"@PaioClaw\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/openclaw-email-skill\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/openclaw-email-skill\\\/\"},\"author\":{\"name\":\"\",\"@id\":\"\"},\"headline\":\"How to Set Up the OpenClaw Email Skill (Gmail, IMAP, SMTP)\",\"datePublished\":\"2026-05-19T00:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/openclaw-email-skill\\\/\"},\"wordCount\":1186,\"publisher\":{\"@id\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/openclaw-email-skill\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/openclaw-email-skill.png\",\"articleSection\":[\"How to\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/openclaw-email-skill\\\/\",\"url\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/openclaw-email-skill\\\/\",\"name\":\"How to Set Up the OpenClaw Email Skill (Gmail, IMAP, SMTP) - PaioClaw\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/openclaw-email-skill\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/openclaw-email-skill\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/openclaw-email-skill.png\",\"datePublished\":\"2026-05-19T00:00:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/openclaw-email-skill\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/openclaw-email-skill\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/openclaw-email-skill\\\/#primaryimage\",\"url\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/openclaw-email-skill.png\",\"contentUrl\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/openclaw-email-skill.png\",\"width\":852,\"height\":341},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/openclaw-email-skill\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Set Up the OpenClaw Email Skill (Gmail, IMAP, SMTP)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/\",\"name\":\"PAIO Blog \u2014 Guides, tips, and updates\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/#organization\",\"name\":\"PAIO\",\"url\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/local.paioclawblog.com\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/paioclaw_logo.webp\",\"contentUrl\":\"https:\\\/\\\/local.paioclawblog.com\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/paioclaw_logo.webp\",\"width\":128,\"height\":128,\"caption\":\"PAIO\"},\"image\":{\"@id\":\"https:\\\/\\\/paioclaw.ai\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/paioclaw\\\/\",\"https:\\\/\\\/x.com\\\/PaioClaw\",\"https:\\\/\\\/www.instagram.com\\\/paioclaw\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/paioclaw\",\"https:\\\/\\\/www.youtube.com\\\/@PaioClaw\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Set Up the OpenClaw Email Skill (Gmail, IMAP, SMTP) - PaioClaw","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/paioclaw.ai\/blog\/openclaw-email-skill\/","og_locale":"en_US","og_type":"article","og_title":"How to Set Up the OpenClaw Email Skill (Gmail, IMAP, SMTP) - PaioClaw","og_description":"PaioClaw gives you a private, always-on AI assistant powered by your own API keys. No Docker, no command line \u2014 sign up and it's ready in 60 seconds.","og_url":"https:\/\/paioclaw.ai\/blog\/openclaw-email-skill\/","og_site_name":"PaioClaw","article_publisher":"https:\/\/www.facebook.com\/paioclaw\/","article_published_time":"2026-05-19T00:00:00+00:00","og_image":[{"width":852,"height":341,"url":"https:\/\/paioclaw.ai\/blog\/wp-content\/uploads\/2026\/05\/openclaw-email-skill.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_creator":"@PaioClaw","twitter_site":"@PaioClaw","twitter_misc":{"Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/paioclaw.ai\/blog\/openclaw-email-skill\/#article","isPartOf":{"@id":"https:\/\/paioclaw.ai\/blog\/openclaw-email-skill\/"},"author":{"name":"","@id":""},"headline":"How to Set Up the OpenClaw Email Skill (Gmail, IMAP, SMTP)","datePublished":"2026-05-19T00:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/paioclaw.ai\/blog\/openclaw-email-skill\/"},"wordCount":1186,"publisher":{"@id":"https:\/\/paioclaw.ai\/blog\/#organization"},"image":{"@id":"https:\/\/paioclaw.ai\/blog\/openclaw-email-skill\/#primaryimage"},"thumbnailUrl":"https:\/\/paioclaw.ai\/blog\/wp-content\/uploads\/2026\/05\/openclaw-email-skill.png","articleSection":["How to"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/paioclaw.ai\/blog\/openclaw-email-skill\/","url":"https:\/\/paioclaw.ai\/blog\/openclaw-email-skill\/","name":"How to Set Up the OpenClaw Email Skill (Gmail, IMAP, SMTP) - PaioClaw","isPartOf":{"@id":"https:\/\/paioclaw.ai\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/paioclaw.ai\/blog\/openclaw-email-skill\/#primaryimage"},"image":{"@id":"https:\/\/paioclaw.ai\/blog\/openclaw-email-skill\/#primaryimage"},"thumbnailUrl":"https:\/\/paioclaw.ai\/blog\/wp-content\/uploads\/2026\/05\/openclaw-email-skill.png","datePublished":"2026-05-19T00:00:00+00:00","breadcrumb":{"@id":"https:\/\/paioclaw.ai\/blog\/openclaw-email-skill\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/paioclaw.ai\/blog\/openclaw-email-skill\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/paioclaw.ai\/blog\/openclaw-email-skill\/#primaryimage","url":"https:\/\/paioclaw.ai\/blog\/wp-content\/uploads\/2026\/05\/openclaw-email-skill.png","contentUrl":"https:\/\/paioclaw.ai\/blog\/wp-content\/uploads\/2026\/05\/openclaw-email-skill.png","width":852,"height":341},{"@type":"BreadcrumbList","@id":"https:\/\/paioclaw.ai\/blog\/openclaw-email-skill\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/paioclaw.ai\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Set Up the OpenClaw Email Skill (Gmail, IMAP, SMTP)"}]},{"@type":"WebSite","@id":"https:\/\/paioclaw.ai\/blog\/#website","url":"https:\/\/paioclaw.ai\/blog\/","name":"PAIO Blog \u2014 Guides, tips, and updates","description":"","publisher":{"@id":"https:\/\/paioclaw.ai\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/paioclaw.ai\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/paioclaw.ai\/blog\/#organization","name":"PAIO","url":"https:\/\/paioclaw.ai\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/paioclaw.ai\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/local.paioclawblog.com\/wp-content\/uploads\/2026\/05\/paioclaw_logo.webp","contentUrl":"https:\/\/local.paioclawblog.com\/wp-content\/uploads\/2026\/05\/paioclaw_logo.webp","width":128,"height":128,"caption":"PAIO"},"image":{"@id":"https:\/\/paioclaw.ai\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/paioclaw\/","https:\/\/x.com\/PaioClaw","https:\/\/www.instagram.com\/paioclaw\/","https:\/\/www.linkedin.com\/company\/paioclaw","https:\/\/www.youtube.com\/@PaioClaw"]}]}},"_links":{"self":[{"href":"https:\/\/paioclaw.ai\/blog\/wp-json\/wp\/v2\/posts\/203","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/paioclaw.ai\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/paioclaw.ai\/blog\/wp-json\/wp\/v2\/types\/post"}],"replies":[{"embeddable":true,"href":"https:\/\/paioclaw.ai\/blog\/wp-json\/wp\/v2\/comments?post=203"}],"version-history":[{"count":0,"href":"https:\/\/paioclaw.ai\/blog\/wp-json\/wp\/v2\/posts\/203\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/paioclaw.ai\/blog\/wp-json\/wp\/v2\/media\/204"}],"wp:attachment":[{"href":"https:\/\/paioclaw.ai\/blog\/wp-json\/wp\/v2\/media?parent=203"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/paioclaw.ai\/blog\/wp-json\/wp\/v2\/categories?post=203"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/paioclaw.ai\/blog\/wp-json\/wp\/v2\/tags?post=203"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}