Forward Message
1import { Reloop } from "reloop-email";2
3const reloop = new Reloop({ apiKey: "rl_123456789" });4
5const { message, messageError } = await reloop.inbox.messages.forward("msg_123456789", {6 to: "colleague@example.com",7 html: "<p>See the thread below.</p>",8});9if (messageError) throw messageError;1{2 "success": true,3 "messageId": "example_messageId",4 "status": "example_status",5 "timestamp": "example_timestamp",6 "id": "con_123456789"7}Path Parameters
idstringRequired
Message ID to forward
Body Parameters
tostring | string[]Required
Recipient email address(es)
Example: ["value1", "value2"]
textstring
Plain text body context prefix
htmlstring
HTML body context prefix
ccstring | string[]
CC recipient address(es)
Example: ["value1", "value2"]
bccstring | string[]
BCC recipient address(es)
Example: ["value1", "value2"]
Was this page helpful?
- Need help? Contact Support.
- Chat with Reloop developers on Discord.
- Check out our changelog.
- Questions? Contact Sales.
- LLM? Read llms.txt.