SendGrid transactional email via uni CLI. Use when user wants to send emails, including HTML emails and dynamic templates. Requires SENDGRID_API_KEY and verified sender email.
66
77%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
High
Do not use without reviewing
Fix and improve this skill with Tessl
tessl review fix ./skill/skills/uni-sendgrid/SKILL.mdSend transactional emails from the terminal.
uni sendgrid auth SG.xxx -f sender@example.com # Set API key
uni sendgrid auth SG.xxx -f sender@example.com -n "App" # With from name
uni sendgrid auth --status # Check configuration
uni sendgrid auth --logout # Remove credentials
# Or use environment variables
export SENDGRID_API_KEY="SG.xxx"
export SENDGRID_FROM="sender@example.com"Get API key from: https://app.sendgrid.com/settings/api_keys
# Plain text email
uni sendgrid send user@example.com "Subject" "Message body here"
# HTML email
uni sendgrid send user@example.com "Welcome!" --html "<h1>Welcome!</h1><p>Thanks for joining.</p>"
# Multiple recipients
uni sendgrid send "a@test.com,b@test.com" "Newsletter" "Content here"
# With CC/BCC
uni sendgrid send user@example.com "Subject" "Body" --cc manager@example.com
uni sendgrid send user@example.com "Subject" "Body" --bcc archive@example.com
# With dynamic template
uni sendgrid send user@example.com "Welcome" -t d-xxxxx -d '{"name":"John","company":"Acme"}'d-f1dfc90
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.