Loading...
Loading...
Send SMTP email notifications after Codex completes a task. Use when one Codex or Claude run is finished, or when you need to notify on task completion with device name, project name, status, and summary via email.
npx skill4agent add caopulan/notification-skill email-notify~/.bashrc~/.zshrcexport CODEX_MACHINE_NAME="Machine-name" # e.g., Macbook
export CODEX_EMAIL_SMTP_HOST="smtp.example.com"
export CODEX_EMAIL_SMTP_PORT="587"
export CODEX_EMAIL_USERNAME="user@example.com"
export CODEX_EMAIL_PASSWORD="..."
export CODEX_EMAIL_FROM="user@example.com"
export CODEX_EMAIL_TO="recipient1@example.com,recipient2@example.com"
export CODEX_EMAIL_USE_TLS="false" # true/false, default false
export CODEX_EMAIL_USE_SSL="true" # true/false, default trueCODEX_EMAIL_USERNAMECODEX_EMAIL_PASSWORDCODEX_EMAIL_USE_SSLtrueCODEX_EMAIL_USE_TLStrueCODEX_EMAIL_USE_TLSCODEX_EMAIL_USE_SSLtrueUse skill email-notify to notify users when each agent run is finished or when any notifications would be sent to users.
AGENTS.mdproject_name: My Projectname:Project Name: My Projectsuccessfailedpartialblockedpython3 ~/.codex/skills/email-notify/scripts/send_email_notification.py \
--task-title "..." \
--status "success" \
--summary "..." \
--project-name "..."scripts/send_email_notification.py