OverviewHistoryStatsSecurity
npx skills add ...
Documentation
SKILL.md
npx skills add tiangong-ai/skills --skill email-smtp-send
Send emails through SMTP with optional local attachments and optional IMAP APPEND sync to Sent mailbox. Use when tasks need reliable outbound email delivery, attachment sending, SMTP connectivity checks, or cross-client sent-mail visibility (for example appending to "Sent Items" after SMTP send).
npx skills add tiangong-ai/skills --skill email-smtp-send
references/env.md and assets/config.example.env).imapclient when sync is enabled.check-config prints sanitized SMTP config + defaults + sent-sync config JSON.send success prints one type=status JSON object containing:
event=smtp_sentmessage_idattachment_count and attachments[] metadatasent_sync object with enabled, required, appended, and sync metadata/errorsend failures print type=error JSON to stderr with one of:
event=smtp_send_invalid_argsevent=smtp_send_failedevent=smtp_sent_sync_failed (only when sync is required and sync fails)send --to: required recipient, repeatable or comma-separated.send --cc: optional CC recipients.send --bcc: optional BCC recipients.send --subject: optional subject (defaults from env).send --body: optional body (defaults from env).send --content-type: plain or html.send --from: optional sender override.send --attach: optional local attachment path, repeatable or comma-separated.send --max-attachment-bytes: max bytes allowed per attachment.send --message-id: optional Message-ID header.send --in-reply-to: optional In-Reply-To header.send --references: optional References header.send --sync-sent|--no-sync-sent: force-enable/disable IMAP sent sync for this send.send --sent-mailbox: override sent mailbox.send --sent-flags: IMAP APPEND flags, comma-separated (default \Seen).send --sent-sync-required: return non-zero if SMTP succeeds but sent sync fails.Environment defaults:
SMTP_HOST, SMTP_PORT, SMTP_SSL, SMTP_STARTTLSSMTP_USERNAME, SMTP_PASSWORD, SMTP_FROM, SMTP_CONNECT_TIMEOUTSMTP_SUBJECT, SMTP_BODY, SMTP_CONTENT_TYPESMTP_MAX_ATTACHMENT_BYTESSMTP_SYNC_SENT, SMTP_SYNC_SENT_REQUIREDSMTP_SENT_IMAP_HOST, SMTP_SENT_IMAP_PORT, SMTP_SENT_IMAP_SSLSMTP_SENT_IMAP_USERNAME, SMTP_SENT_IMAP_PASSWORDSMTP_SENT_IMAP_MAILBOX, SMTP_SENT_IMAP_FLAGS, SMTP_SENT_IMAP_CONNECT_TIMEOUTIMAP_HOST, IMAP_PORT, IMAP_SSL, IMAP_USERNAME, IMAP_PASSWORD, IMAP_CONNECT_TIMEOUTimapclient:2.1.--sent-sync-required or SMTP_SYNC_SENT_REQUIRED=true), sync failure exits with code 1.references/env.mdassets/config.example.envscripts/smtp_send.pypython3 scripts/smtp_send.py send \
--to recipient@example.com \
--subject "Package delivery" \
--body "See attachments." \
--attach ./report.pdf \
--attach ./appendix.xlsxpython3 scripts/smtp_send.py send \
--to recipient@example.com \
--subject "Synced send" \
--body "This message will be appended to Sent Items." \
--sync-sent \
--sent-mailbox "Sent Items"python3 -m pip install imapclient