twilio-sendgrid-email-send Skill
Send transactional and bulk email via the SendGrid v3 Mail Send API. Covers single sends, personalized batch sends with dynamic templates, scheduled sends with cancellation, attachments, and sandbox mode for testing. Use this skill when the caller has a SendGrid API key (SG.-prefix). Do NOT use this skill if the caller Published by openai in plugins.
What is twilio-sendgrid-email-send Skill?
Send transactional and bulk email via the SendGrid v3 Mail Send API. Covers single sends, personalized batch sends with dynamic templates, scheduled sends with cancellation, attachments, and sandbox mode for testing. Use this skill when the caller has a SendGrid API key (SG.-prefix). Do NOT use this skill if the caller Published by openai in plugins. This profile combines repository metadata with install, compatibility, and usage signals so developers can quickly decide whether it fits their agent workflow before opening the source repository.
Automated repository signals based on public metadata such as recency, license, installation evidence, and adoption. These are not a security audit or endorsement.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Testing
- Testing use cases
Technical details
- Install or run with Copy skill directory
When to use twilio-sendgrid-email-send Skill
- Use it for testing.
Built with
Editorial notes
Source
- Creator: openai
- Repository: openai/plugins
- Skill file: plugins/twilio-developer-kit/skills/twilio-sendgrid-email-send/SKILL.md
What it does
Send transactional and bulk email via the SendGrid v3 Mail Send API. Covers single sends, personalized batch sends with dynamic templates, scheduled sends with cancellation, attachments, and sandbox mode for testing. Use this skill when the caller has a SendGrid API key (SG.-prefix). Do NOT use this skill if the caller
Skill instructions
Overview Agent safety: Always confirm recipients, subject, and content with the user before sending. Email is irreversible once delivered. Never send email autonomously without explicit user approval — especially for batch sends to multiple recipients. All email sending goes through POST /v3/mail/send. This endpoint returns 202 Accepted (queued) — NOT 200 OK (delivered). Delivery confirmation comes asynchronously via Event Webhook. See twilio-sendgrid-webhooks. --- Basic Send Python python import os, sendgrid from sendgrid.helpers.mail import Mail sg = sendgrid.SendGridAPIClient(os.environ["SENDGRIDAPIKEY"]) message = Mail( fromemail="verified@yourdomain.com", toemails="recipient@example.com", subject="Order Confirmation", htmlcontent="<pYour order 1234 is confirmed.</p" ) response = sg.send(message) print(f"Status: {response.statuscode}") 202 = queued Node.js javascript const sgMail = require("@sendgrid/mail"); sgMail.setApiKey(process.env.SENDGRIDAPIKEY); const [response] = await sgM
Explore related resources
Frequently asked questions
What is twilio-sendgrid-email-send?
twilio-sendgrid-email-send is a open-source AI agent skill with Copy skill directory. Send transactional and bulk email via the SendGrid v3 Mail Send API. Covers single sends, personalized batch sends with dynamic templates, scheduled sends with cancellation, attachments, and.
Who is twilio-sendgrid-email-send best for?
twilio-sendgrid-email-send is best for reusing agent instructions, scripts, and references, testing workflows.
How do I install twilio-sendgrid-email-send?
Install or run twilio-sendgrid-email-send using Copy skill directory. Check twilio-sendgrid-email-send for the latest setup command.
Is twilio-sendgrid-email-send actively maintained?
twilio-sendgrid-email-send may need a closer maintenance check before production use.
Auto-fetched from GitHub.