thinkfleetai/thinkfleet-engine

email-send

Send emails via SMTP using curl or Python's smtplib.

First seen Mar 1, 2026

Installation

$ npx skills add thinkfleetai/thinkfleet-engine --skill email-send

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 thinkfleetai/thinkfleet-engine · top by installs.

npx skills add thinkfleetai/thinkfleet-engine

Browse all from thinkfleetai/thinkfleet-engine

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

License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,284 B
  • docs SUMMARY.md 70 B

History

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

SKILL.md

Email Send

Send emails via SMTP.

Environment Variables

  • SMTP_HOST - SMTP server (e.g. smtp.gmail.com)
  • SMTP_PORT - Port (e.g. 587)
  • SMTP_USER - SMTP username/email
  • SMTP_PASSWORD - SMTP password or app password

Send with curl

curl --ssl-reqd \
  --url "smtps://${SMTP_HOST}:${SMTP_PORT}" \
  --user "${SMTP_USER}:${SMTP_PASSWORD}" \
  --mail-from "$SMTP_USER" \
  --mail-rcpt "[email protected]" \
  -T - <<EOF
From: $SMTP_USER
To: [email protected]
Subject: Hello

Email body here.
EOF

Send with Python

python3 -c "
import smtplib, os
from email.mime.text import MIMEText
msg = MIMEText('Email body here')
msg['Subject'] = 'Hello'
msg['From'] = os.environ['SMTP_USER']
msg['To'] = '[email protected]'
with smtplib.SMTP(os.environ['SMTP_HOST'], int(os.environ['SMTP_PORT'])) as s:
    s.starttls()
    s.login(os.environ['SMTP_USER'], os.environ['SMTP_PASSWORD'])
    s.send_message(msg)
print('Sent')
"

Notes

  • For Gmail, use an App Password (not your account password).
  • Always confirm recipient and content with the user before sending.