wraps-email

Send emails through AWS SES using a TypeScript SDK.

1|Updated Jan 18, 2026
One-click install
npx skills add https://github.com/wraps-team/skills --skill wraps-email
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: wraps-email
Source: https://github.com/wraps-team/skills/tree/main/skills/wraps-email
Command: npx skills add https://github.com/wraps-team/skills --skill wraps-email

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Streamlines sending emails by providing a TypeScript SDK that talks directly to AWS SES, handling credential resolution, and offering template management and React.email integration for modern templates.

Core Features & Use Cases

  • Auto credential resolution: uses AWS credentials from environment variables, IAM roles, or web identities.
  • React.email support: build and render email templates as React components.
  • Template management and sending: create, update, and send SES templates with data-driven content.
  • Use cases: transactional emails, user notifications, and marketing campaigns across serverless or Node.js apps.

Quick Start

Create a WrapsEmail instance and call send with a simple from, to, subject, and html payload to verify setup.

Frequently Asked Questions about wraps-email

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I send transactional emails using AWS SES in a TypeScript backend?

You can send transactional emails using AWS SES in a TypeScript backend by instantiating the SDK, relying on its automatic credential resolution, and calling the send function with sender, recipient, subject, and HTML payload parameters.

Can I use React components to build and manage AWS SES email templates?

Yes, you can use React.email components to build and render AWS SES email templates, allowing you to manage data-driven content and programmatically create, update, and send those templates directly within your Node.js applications.

Does this TypeScript email SDK support automatic credential resolution for serverless deployments?

Yes, this TypeScript email SDK supports automatic credential resolution for serverless deployments by natively detecting and using AWS credentials from environment variables, IAM roles, or web identities without requiring manual configuration.

What is the best way to handle regional configurations when sending emails through AWS SES?

The best way to handle regional configurations when sending emails through AWS SES is to use an SDK that provides optional regional setup parameters, ensuring robust email delivery and error handling across your chosen AWS regions.

Why does my AWS SES email delivery fail when switching between different IAM roles?

AWS SES email delivery might fail when switching IAM roles if the SDK lacks robust error handling or automatic credential resolution, which are required to seamlessly transition between environment variables and web identities.