quiet-mail for Openclaw

A zero-friction email API providing unlimited sending capabilities and 1GB storage specifically for autonomous AI agents.

co1onnese
v1.0.0
Feb 6, 2026
0
2.3k
0

Install & Download

1. ClawHub CLI

The fastest way to install a skill directly from the registry.

npx clawhub@latest install quietmail

2. Manual Installation

Copy the skill folder to one of these locations

Global
~/.openclaw/skills/
Workspace
<project>/skills/

Priority: Workspace > Local > Bundled

3. Prompt Installation

Copy this prompt to OpenClaw to install it automatically.

Help me install quietmail using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).

Prefer to download?

Get the raw skill files in a ZIP archive.

What is quiet-mail?

quiet-mail is a specialized communication layer built to empower developers working with Openclaw Skills. It addresses the common bottlenecks of traditional email providers by removing daily sending limits and eliminating the need for social media or phone verification. This skill allows agents to possess their own unique email identities, enabling them to interact with human users, sign up for third-party services, and send automated reports without being throttled.

Built on a robust, self-hosted mailcow infrastructure, quiet-mail ensures that your agent's outbound communication is reliable and independent of restrictive third-party APIs. It provides a seamless way to integrate email functionality into any AI workflow, making it an essential tool for those looking to expand the reach and utility of their Openclaw Skills.

quiet-mail Use Cases

  • Sending real-time task completion notifications and system alerts
  • Distributing automated daily reports with rich HTML formatting
  • Creating unique identities for agents to sign up for external API services or monitoring tools
  • Developing multi-agent systems that require external communication channels
  • Implementing human-in-the-loop workflows where the agent must initiate contact via email

How quiet-mail Works

  1. Initialize an agent by defining a unique ID and display name via a simple POST request.
  2. Receive and securely store a unique API key generated instantly upon agent creation.
  3. Authenticate outbound email requests using the Bearer token in the API headers.
  4. Send emails by providing recipient data, subject lines, and content (text or HTML) to the agent's send endpoint.
  5. Optionally query the sent history endpoint to track and verify the delivery of outbound messages.

quiet-mail Setup

To integrate this capability into your Openclaw Skills, first create your agent identity using the following command:

curl -X POST https://api.quiet-mail.com/agents \
  -H "Content-Type: application/json" \
  -d '{"id": "my-agent", "name": "My AI Assistant"}'

Once you have your API key, you can send an email immediately:

curl -X POST https://api.quiet-mail.com/agents/my-agent/send \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "to": "[email protected]",
    "subject": "Automated Update",
    "text": "Your agent has completed the requested task."
  }'

quiet-mail Data Schema & Taxonomy

The skill manages agent identities and message metadata. Below is the structure used for organizing agent data within the ecosystem:

Property Description Data Type
agent_id Unique identifier (3-32 lowercase chars) String
apiKey Secret token for authorized API access String
email The generated agent address (@quiet-mail.com) String
storage Allocated storage capacity (1GB default) Number

Email payloads support the following schema:

  • to: Recipient email address
  • subject: Subject of the email
  • text: Plain text version of the message
  • html: Optional HTML version for rich formatting
  • replyTo: Optional custom reply-to address

quiet-mail Advanced Features

  • Unlimited daily sending volume managed through trust-based monitoring for Openclaw Skills users
  • Dual-content support for sending both plain text and high-fidelity HTML emails
  • Integrated sent message tracking with paginated API access for auditing
  • 1GB of dedicated agent storage for handling high volumes of outbound data
  • Zero-friction provisioning requiring no external account verification or phone numbers
  • Native integration support for various programming environments including Python and Node.js

SKILL.md


Loading

Related Openclaw Skills

METADATA

Github Stars: 0
forks: 0

Featured*