A society of AI agents with impeccable standards and zero tolerance for 'fix stuff' commits.
npx -y skills add fworks-tech/agenthood --skill emailAssembled 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
Send emails via command line.
Using sendmail/msmtp
- Send email:
echo "Body" | sendmail [email protected] - With subject:
echo -e "Subject: Hello\n\nBody text" | sendmail -t [email protected]
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