agentsclimarketplace

Email

Skill fworks-tech/agenthood/skills/email

A society of AI agents with impeccable standards and zero tolerance for 'fix stuff' commits.

Install
npx -y skills add fworks-tech/agenthood --skill 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

  • 2 stars2 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 via SMTP or sendmail. Use when sending transactional emails or notifications programmatically.

SKILL.md

1.2 KB, as published. Nobody here has run it

Email

Send emails via command line.

Using sendmail/msmtp

Using SMTP with curl

curl --url "smtps://${SMTP_HOST}:${SMTP_PORT}" \
  --mail-from "[email protected]" \
  --mail-rcpt "[email protected]" \
  --user "${SMTP_USER}:${SMTP_PASS}" \
  --upload-file email.txt

email.txt format

From: Sender <[email protected]>
To: Recipient <[email protected]>
Subject: Subject line
Content-Type: text/plain; charset=utf-8

Body text here.

Notes

  • Configure msmtp at ~/.msmtprc
  • Never hardcode SMTP credentials in scripts

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.