notabanker/codexclawd · Archived

fastmail

Send emails via Fastmail SMTP. Requires app password setup.

First seen Mar 10, 2026

Installation

$ npx skills add notabanker/codexclawd --skill fastmail

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from notabanker/codexclawd.

npx skills add notabanker/codexclawd

Browse all from notabanker/codexclawd

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 836 B
  • docs SUMMARY.md 75 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Fastmail Integration

Send emails through Fastmail using SMTP.

Setup

  1. Get Fastmail app password: Settings → Privacy & Security → App Passwords → New
  2. Store credentials:

``bash mkdir -p ~/.config/fastmail echo '[email protected]:xxxx-app-password-xxxx' > ~/.config/fastmail/creds chmod 600 ~/.config/fastmail/creds ``

Usage

Send email:

python3 /home/boss/.openclaw/workspace/skills/fastmail/scripts/send.py \
  --to [email protected] \
  --subject "Hello" \
  --body "Email body here"

HTML email:

python3 /home/boss/.openclaw/workspace/skills/fastmail/scripts/send.py \
  --to [email protected] \
  --subject "Hello" \
  --body "<h1>HTML</h1><p>Content</p>" \
  --html