agentsclimarketplace

Mailapp send email

Skill IvanCampos/agents/skills/mailapp-send-email

All things related to my Codex agents running on MacOS

Install
npx -y skills add IvanCampos/agents --skill mailapp-send-email

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Send emails through the macOS Mail app using AppleScript. Use when a task requires composing or sending email via Mail.app (including to/cc/bcc, subject, body, or attachments), or when the user asks for Mail app automation or osascript-based email sending.

SKILL.md

1.7 KB, as published. Nobody here has run it

Mail.app Send Email

Overview

Use the bundled AppleScript to compose and optionally send Mail.app messages with structured inputs (to/cc/bcc/subject/body/attachments).

Quick Start

Run the AppleScript via osascript with --to, --subject, and --body. Pass comma-separated lists for multiple recipients or attachments.

osascript /Users/ivancampos/.codex/skills/mailapp-send-email/scripts/send_mail.applescript \
  --to "[email protected]" \
  --subject "hello" \
  --body "testing"

Inputs

Use these flags. Only --to, --subject, and --body are required.

  • --to single email or comma-separated list
  • --cc optional comma-separated list
  • --bcc optional comma-separated list
  • --subject subject line
  • --body message body
  • --attach optional comma-separated POSIX file paths
  • --send optional true|false (default true, send immediately)

Behavior

  • Create a new outgoing message in Mail.app.
  • By default send immediately. If --send false, leave the draft visible for review.
  • If --attach is provided, add each file path as an attachment.

Troubleshooting

  • If Mail.app automation prompts appear, grant permissions in System Settings -> Privacy & Security -> Automation.
  • If attachments fail, ensure paths are absolute POSIX paths and the files exist.

Resources

scripts/

  • scripts/send_mail.applescript Create a Mail.app message with optional cc/bcc/attachments and optional immediate send.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.