🧪 Skills

Send transactional email via DmartechX/Iemail OpenAPI. Configure in OpenClaw skills env or use secret.md.

--- name: iemail-send description: Send transactional email via Iemail OpenAPI. Configure via OpenClaw skill env only. homepage: https://app.dmartech.cn/ metadata: {"openclaw":{"emoji":"📧","requi

v1.0.4
❤️ 0
⬇️ 48
👁 2
Share

Description


name: iemail-send description: Send transactional email via Iemail OpenAPI. Configure via OpenClaw skill env only. homepage: https://app.dmartech.cn/ metadata: {"openclaw":{"emoji":"📧","requires":{"anyBins":["python3"],"env":["IEMAIL_ACCESS_KEY","IEMAIL_ACCESS_KEY_SECRET","IEMAIL_SENDER"]},"primaryEnv":"IEMAIL_ACCESS_KEY"}}

Iemail Send

Send transactional single email via Dmartech/Iemail OpenAPI using Python.

Configuration

Configure in ~/.openclaw/openclaw.json:

"skills": {
  "entries": {
    "iemail-send": {
      "enabled": true,
      "env": {
        "IEMAIL_ACCESS_KEY": "your-access-key",
        "IEMAIL_ACCESS_KEY_SECRET": "your-access-key-secret",
        "IEMAIL_SENDER": "your-sender@example.com"
      }
    }
  }
}
Variable Description
IEMAIL_ACCESS_KEY OpenAPI access key
IEMAIL_ACCESS_KEY_SECRET OpenAPI access key secret
IEMAIL_SENDER Sender email address (required)
IEMAIL_TO Default recipient (optional)

Agent instructions

  1. Credentials: Read ~/.openclaw/openclaw.json or workspace config files. OpenClaw injects env at runtime.
  2. Send mail: Run script in workspace:
    python3 {baseDir}/send_email.py --to "recipient@example.com" --subject "Subject" --content "Body"
    

Usage examples

python3 {baseDir}/send_email.py --to "recipient@example.com" --subject "Hello" --content "Hello from Iemail"
python3 {baseDir}/send_email.py "recipient@example.com" "Hello" "Hello from Iemail"

Troubleshooting

  • 401 Unauthorized: Check IP whitelist, key/secret, and system time.
  • cannot find senderAddressSn: Check IEMAIL_SENDER matches a configured sender address.

Reviews (0)

Sign in to write a review.

No reviews yet. Be the first to review!

Comments (0)

Sign in to join the discussion.

No comments yet. Be the first to share your thoughts!

Compatible Platforms

Pricing

Free

Related Configs