SKILL.md
Fastmail Integration
Send emails through Fastmail using SMTP.
Setup
- Get Fastmail app password: Settings → Privacy & Security → App Passwords → New
- 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