InboxForward an inbound message

Forward an inbound message

Sends Fwd: <subject> to to with a Gmail-style "---------- Forwarded message ---------" block containing the message. Starts a new thread (no In-Reply-To / References). Attachments of the original are listed but not re-attached. Billed like POST /v1/send.

curl -X POST "https://api.supasend.io/v1/inbox/messages/507f1f77bcf86cd799439011/forward" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{
  "to": "user@example.com",
  "body_html": "example_string",
  "body_text": "example_string",
  "subject": "example_string",
  "ip_id": "example_string",
  "headers": {},
  "scheduled_at": "2024-12-25T10:00:00Z"
}'
{
  "id": "example_string",
  "status": "queued",
  "message_id": "example_string",
  "subject": "example_string",
  "to": "example_string",
  "scheduled_at": "2024-12-25T10:00:00Z"
}
POST
/v1/inbox/messages/{id}/forward
POST
Base URLstring

Target server for requests. Edit to use your own host.

API Key (header: X-API-Key)
X-API-Keystring
Required

API key in the format sk_live_<64 hex characters>

API key in the format sk_live_<64 hex characters>
path
idstring
Required

MongoDB ObjectID

Content-Typestring
Required

The media type of the request body

Options: application/json
tostring
Required
Format: email
body_htmlstring

Optional note placed above the forwarded block

subjectstring

Override the generated Fwd: subject

scheduled_atstring
Format: date-time
Request Preview
Response

Response will appear here after sending the request

Authentication

header
X-API-Keystring
Required

API Key for authentication. API key in the format sk_live_\<64 hex characters\>

Path Parameters

idstring
Required

MongoDB ObjectID

Example:
507f1f77bcf86cd799439011

Body

application/json
body_htmlstring

Optional note placed above the forwarded block

subjectstring

Override the generated Fwd: subject

Responses