send-email

Fail

Audited by Runlayer on Mar 4, 2026

Risk Level: HIGH
Scan Summary
Max Score
91%
Files
6
Flagged
5
Chunks
13
Flagged Files (5)
send-email/references/single-email-examples.mdHIGH
91.5%

Malicious tool definition detected

send-email/SKILL.mdHIGH
90.1%

Tool passed security scan

Malicious tool definition detected

```typescript tags: [ { name: 'user_id', value: 'usr_123' }, { name: 'email_type', value: 'welcome' }, { name: 'plan', value: 'enterprise' } ] ``` **Use cases:** - Associate emails with customers in your system - Categorize by email type (welcome, receipt, password-reset) - Filter emails in the Resend dashboard - Correlate webhook events back to your application **Constraints:** Tag names and values can only contain ASCII letters, numbers, underscores, or dashes.

- Store API key in `RESEND_API_KEY` environment variable - Node.js SDK supports `react` parameter for React Email components - Resend returns `error`, `data`, `headers` in the response.

send-email/references/best-practices.mdMEDIUM
86.5%

Malicious tool definition detected

", attempt+1, delay) time.Sleep(delay) } return nil, fmt.Errorf("failed after %d attempts: %w", maxRetries+1, lastErr) } // Usage client := resend.NewClient(os.Getenv("RESEND_API_KEY")) params := &resend.SendEmailRequest{ From: "Acme <onboarding@resend.dev>", To: []string{"delivered@resend.dev"}, Subject: "Order Confirmation", Html: "<p>Your order is confirmed.</p>", Headers: map[string]string{ "Idempotency-Key": fmt.Sprintf("order-confirmation/%s", orderID), }, } sent, err := sendEmailWithRetry

send-email/references/batch-email-examples.mdMEDIUM
81.3%

Tool passed security scan

Malicious tool definition detected

send-email/references/webhooks.mdMEDIUM
77.7%

Tool passed security scan

Malicious tool definition detected

Description: in Resend dashboard # https://abc123.ngrok.io/webhooks/resend ``` ## Event Payload Example ```json { "type": "email.delivered", "created_at": "2024-01-15T12:00:00.000Z", "data": { "email_id": "ae2014de-c168-4c61-8267-70d2662a1ce1", "from": "Acme <noreply@acme.com>", "to": ["delivered@resend.dev"], "subject": "Welcome to Acme" } } ```

Passed Files (1)Click to expand
send-email/references/installation.mdOK
18.1%

Tool passed security scan

Audit Metadata
Max File Score
91%
Classification
KNOWN_SERVER_PARTIAL_KNOWN
Files Scanned
6
Files Flagged
5
Chunks Analyzed
13
Analyzed
Mar 4, 2026, 09:43 PM
Security Audit — runlayer — send-email