sendrealm-email when an agent needs to add, review, or debug outbound email with Sendrealm. The skill is modeled after concise email-provider skills, but follows Sendrealm’s SDK and API reference behavior.
What It Covers
- Installing and using
@sendrealm/sdkfrom trusted backend code. - Storing
SENDREALM_API_KEYserver-side. - Sending email with API-required
from,to,subject, andtext. - Adding optional
html,cc,bcc,reply_to,attachments,headers, andtags. - Creating and publishing Sendrealm email templates for broadcasts and automations.
- Handling typed SDK errors such as
APIErrorandRateLimitError. - Avoiding Resend-specific patterns that Sendrealm does not expose.
Use It
Guardrails
- Never put
SENDREALM_API_KEYin browser or mobile code. - Do not copy Resend’s Node pattern of returning
{ data, error }; Sendrealm throws typed SDK errors. - Do not claim direct email sends support email idempotency keys unless the installed SDK or API reference exposes that feature.
- Do not invent direct-send
template_idbehavior. Direct sends use body content; templates are reusable assets for Sendrealm workflows.