Google Workspace Studio Tutorial: The New 'Notify by Email' Action — CoPilot Blog
    Neura MarketNeura Market/CoPilot
    ChatGPTChatGPTClaudeClaudeGeminiGeminiCursorCursorGrokGrokPerplexityPerplexityCoPilotCoPilot
    DeepSeekDeepSeekStable DiffusionStable DiffusionMidjourneyMidjourney
    View All Directories
    OverviewRulesPromptsMCPsAgentsBlogVideosGuidesCoursesCommunityPluginsTrendingGenerate
    CoPilotBlogGoogle Workspace Studio Tutorial: The New 'Notify by Email' Action
    Back to Blog
    Google Workspace Studio Tutorial: The New 'Notify by Email' Action
    googleworkspace

    Google Workspace Studio Tutorial: The New 'Notify by Email' Action

    Aryan Irani June 16, 2026
    0 views

    If you run a product or manage technical operations, you likely have a Google Sheet somewhere that...

    If you run a product or manage technical operations, you likely have a Google Sheet somewhere that acts as a dumping ground for unstructured data. Whether it's customer feedback, bug reports, or feature requests, that spreadsheet grows every single day. Manually reading through hundreds of rows every Friday just to summarize the "vibe" and identify blockers for the executive team is tedious, repetitive work. In this tutorial, we are going to completely automate that process using Google Workspace Studio. We are going to build an event-driven pipeline that wakes up on a strict schedule, extracts the raw data from your Google Sheet, natively parses the tone and urgency, and uses Gemini to output a highly-structured executive summary directly into your inbox. Here is the exact step-by-step architecture. ## Step 1: The Scheduled Trigger Instead of relying on a manual event—like a form submission or a file upload—we want this pipeline to run autonomously. In **Workspace Studio**, create a new flow and set the Starter to On a schedule. You can configure this to act exactly like a cron job. ![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qd3hf1cwiyc0mcs112jz.png) **Configure the following fields:** - **Start date and time:** Set this to your desired starting Friday at 4:00 PM (or 8:00 AM, depending on when you want the report). - **Repeat:** Select Weekly. - **Ends:** Set to 1 year (or your preferred duration). - **Time zone:** Ensure this matches your local working hours (e.g., (GMT+05:30) India Time). ## Step 2: Data Extraction & Structuring Next, we need to pull the raw data into the pipeline runtime. Instead of just dumping a massive, unstructured spreadsheet directly into an LLM, we can use Workspace Studio's native Extract node to structure it first. ![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/81tka0sp318u7nhrwloi.png) 1. Add an **Extract** node. 2. In the "Content to analyze" field, paste the direct link to your target Google Sheet. 3. Under "What to extract", select the predefined option: Sentiment: tone and urgency. By doing this, Workspace Studio automatically parses the massive spreadsheet behind the scenes and generates two distinct, structured variables for our next step: `{{Tone}}` and `{{Urgency}}`. This significantly reduces AI hallucinations. ## Step 3: Data Analysis (Ask Gemini) This is the core logic node where we take those extracted variables and format them into a readable report. ![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/amg3oapx8qyguvawfa89.png) 1. Add an Ask Gemini node. 2. Click the + Variables dropdown and insert the `{{Tone}}` and `{{Urgency}}` variables generated from Step 2. 3. Append strict system instructions to force a structured output. Because the Extract node already did the heavy lifting of determining the sentiment, our runtime prompt can be incredibly simple and targeted: > You are an Ops Manager. I have automatically extracted the overall tone and urgency from our weekly customer feedback spreadsheet. Tone: {{Tone}}. Urgency: {{Urgency}}. Based on these extracted variables, generate a professional Executive Summary. Highlight the overall sentiment and summarize the urgency of the technical blockers. Format as a clean report using bullet points. ## Step 4: Generating the Report (Google Docs) Now we need to get the output out of the pipeline and into a readable document. ![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/jq3z3c4vmydy13s7ka7h.png) 1. Add a Create a doc node. 2. Set the Title: Executive Summary: Feedback. 3. Set the Body to the output variable from the Gemini node in Step3. ## Step 5: Distribution (Gmail) Finally, we need to distribute the report so you don't have to go digging through your Drive to find it. ![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/jlfqwbbguejlwlvyqkxd.png) 1. Add a Notify me by email node. 2. Set the Subject to: **[Automated Report] Weekly Feedback Summary**. 3. In the Message field, copy and paste the following template. Use the + Variables dropdown to insert the dynamic variables where indicated: > Here is your automated weekly feedback report. > Overall Tone: {{Tone}} Urgency Level: {{Urgency}} > You can review the full executive summary and the breakdown of technical blockers here: {{Document_Link}} > (You can forward this document to the leadership team). (Note: The 'Notify me by email' node automatically sends the email directly to the account running the workflow, making it perfect for a personal executive summary.) ## Step 6: The Test Run & Output Before blindly turning this on, you always want to run a test to ensure your variables are mapping correctly. Click the **Test run** button at the bottom of the Workspace Studio editor. ![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/la0omjlre5wvdcwp99bs.png) If everything is wired up correctly, you will see a beautiful wall of green checkmarks confirming that the pipeline successfully extracted the data, generated the document, and sent the email. Check your inbox. You should have an email waiting for you that looks like this: ![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/1erhmznnlf6eqm8pfezz.png) Because we used the Extract node, the pipeline correctly identified the tone of our mock data as negative and the urgency as urgent. When you click the generated document link in the email, you'll see the real magic. Gemini successfully parsed the unstructured customer feedback, bypassed the generic complaints, and accurately identified the critical technical blockers (like the timeout errors and scheduled trigger failures). ![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/d0ciajbnmwpvm8nxwg4u.png) ## The Verdict: Moving from Manual to Event-Driven If you are still manually reading spreadsheets, parsing user feedback, and writing Friday summary emails from scratch, you are wasting valuable engineering and operational hours. By combining a Scheduled Trigger with the new Extract and Notify me by email nodes, we just built a highly-resilient, event-driven reporting pipeline in under 10 minutes. The beauty of this architecture is the clean separation of concerns: 1. Google Sheets acts as your raw data lake. 2. Workspace Studio's Extract Node acts as your data parser (which severely reduces LLM hallucination). 3. Gemini acts as your dedicated logic and reasoning engine. 4. Google Docs & Gmail act as your automated distribution layer. You set it up once, and every single Friday at 4:00 PM, a perfectly formatted executive summary lands in your inbox. No manual prompting required. ## Work With Me I run a specialized software consultancy focused on building custom tools, AI integrations, and automation pipelines that help engineering and ops teams move significantly faster. We just launched our brand new website, and we are currently taking on new clients. My core services include: - **AI & Workspace Automation:** Building custom Gemini architectures (like the pipeline above) directly into your business infrastructure. - **Custom Software Development:** Architecting scalable web applications and internal tools from the ground up. - **Cloud Architecture:** Secure GCP and Firebase infrastructure design. - **Developer Relations & Content:** Partnering with tech brands to create high-quality developer tutorials and video series. If your team is dealing with manual bottlenecks, or if you need an expert to help architect a complex solution, check out my new site and let's get on a call. 👉 [Website](https://aryanirani123.com/) 👉 [LinkedIn](https://www.linkedin.com/in/aryanirani123/)

    Tags

    googleworkspaceworkspacestudioautomationproductivity

    Comments

    More Blog

    View all
    Minimalist EKS: The Easy Waykubernetes

    Minimalist EKS: The Easy Way

    Amazon EKS manages the Kubernetes control plane, but you remain responsible for provisioning the...

    J
    Joaquin Menchaca
    Never forget to enter the Stern Grove lottery again!ai

    Never forget to enter the Stern Grove lottery again!

    Browser automation with Playwright, Python, GitHub Actions, and Entire to auto-enter San Francisco Stern Grove concert lotteries each week!

    L
    Lizzie Siegle
    A Free Screenshot Editor That Never Uploads Your Imagetypescript

    A Free Screenshot Editor That Never Uploads Your Image

    A free screenshot and image editor that runs entirely in your browser. Keeping every edit reversible and handling big phone photos, in plain TypeScript and Canvas2D.

    M
    Martin Stark
    I built a CLI to break my highlights out of Apple Booksshowdev

    I built a CLI to break my highlights out of Apple Books

    A macOS CLI + MCP server that exports Apple Books highlights to Markdown and gives AI assistants direct access to your reading notes.

    A
    Andrey Korchak
    A Developer's Guide to Agent Hooks in Antigravity CLIai

    A Developer's Guide to Agent Hooks in Antigravity CLI

    Motivation To be quite honest, "Hooks"—the shell commands we trigger at specific points...

    T
    Tanaike
    Tactical vs. Strategic Agentic AI Development — A Playbook for Developersagents

    Tactical vs. Strategic Agentic AI Development — A Playbook for Developers

    The Strategic Engineer: Why Writing Code Is No Longer Your Most Valuable Skill ...

    A
    Adewumi Saheed Adewale

    Stay up to date

    Get the latest CoPilot prompts, rules, and resources delivered to your inbox weekly.

    Neura Market LogoNeura Market

    Discover the best AI prompts, plugins, and resources for CoPilot and more.

    Content Types

    • Rules
    • Prompts
    • MCPs
    • Agents
    • Guides

    Platforms

    • ChatGPT Directory
    • Claude Directory
    • Gemini Directory
    • Cursor Directory
    • Grok Directory
    • Perplexity Directory
    • DeepSeek Directory
    • CoPilot Directory
    • Stable Diffusion Directory
    • Midjourney Directory
    • All Directories

    Resources

    • Blog
    • Documentation
    • Help Center
    • Marketplace

    Legal

    • Privacy Policy
    • Terms of Service

    © 2026 Neura Market. All rights reserved.

    |

    Not affiliated with any AI platform vendors.