Skip to main content
POST
/
api
/
v1
/
campaigns
/
{campaign_id}
/
forward-email
curl -X POST "https://server.smartlead.ai/api/v1/campaigns/12345/forward-email?api_key=YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "message_id": "msg-abc-123",
    "stats_id": "stats-abc-123",
    "to_emails": "manager@company.com,sales@company.com"
  }'
{
  "ok": true,
  "message": "Email forwarded successfully"
}
Forward email threads to colleagues or external recipients. Maintains original context and thread history.

Overview

Forwards an email to specified recipients. Useful for collaboration, escalation, and sharing important conversations. Use Cases:
  • Escalate to manager/supervisor
  • Share with team members
  • Forward to subject matter expert
  • Loop in decision makers
  • External referrals

Path Parameters

campaign_id
integer
required
Campaign ID

Query Parameters

api_key
string
required
Your SmartLead API key

Request Body

message_id
string
required
Message ID to forward
stats_id
string
required
Email stats ID
to_emails
string
required
Comma-separated recipient email addresses
curl -X POST "https://server.smartlead.ai/api/v1/campaigns/12345/forward-email?api_key=YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "message_id": "msg-abc-123",
    "stats_id": "stats-abc-123",
    "to_emails": "manager@company.com,sales@company.com"
  }'

Response Example

{
  "ok": true,
  "message": "Email forwarded successfully"
}