send-email

Send emails with recipient, subject, and body via run_intent JSON parameters.

24.4k|2.6k|Updated Mar 31, 2025
One-click install
npx skills add https://github.com/google-ai-edge/gallery --skill send-email-google-ai-edge
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: send-email
Source: https://github.com/google-ai-edge/gallery/tree/main/Android/src/app/src/main/assets/skills/send-email
Command: npx skills add https://github.com/google-ai-edge/gallery --skill send-email-google-ai-edge

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill automates the process of sending emails from AI-driven workflows, removing manual steps and reducing context switching.

Core Features & Use Cases

  • Automated email sending: Compose and dispatch messages using recipient, subject, and body data.
  • Flexible integration: Works with run_intent by passing a JSON payload containing extra_email, extra_subject, and extra_text.
  • Use Case: Send a confirmation email after a completed action or a reminder notification to a user.

Quick Start

Send an email to a specified recipient with a given subject and body.

Frequently Asked Questions about send-email

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate sending emails from my AI workflow?▼

You can automate sending emails by passing a JSON string containing the recipient (extra_email), subject (extra_subject), and body (extra_text) parameters to the run_intent tool.

What parameters are required to send an email through an AI assistant?▼

To send an email, you must provide a JSON payload containing extra_email for the recipient, extra_subject for the subject line, and extra_text for the message body content.

Can I use this to send automated confirmation and reminder emails?▼

Yes, this automation supports sending confirmation emails after completed actions and dispatching reminder or notification emails by constructing messages from the provided parameters.

How do I pass email recipient and subject data in my automation workflow?▼

You pass email recipient and subject data by formatting them into a JSON string as extra_email and extra_subject parameters, which the run_intent tool processes to dispatch the email.

What is the best way to trigger an email notification from an AI assistant without manual steps?▼

The best way to trigger an email notification is to use the run_intent tool with a JSON payload containing extra_email, extra_subject, and extra_text, removing manual context switching.