Marketing site contact form
The classic. A lead fills the form, the sales team gets the email, and _replyto rewrites the email's Reply-To header — so when sales hits Reply, the message goes to the lead, not to us.
curl -X POST https://login.ollastack.com/api/submit/contact \
-H "Content-Type: application/json" \
-d '{
"name": "Ada Lovelace",
"email": "ada@example.com",
"message": "Interested in a demo for our 12-person team.",
"_replyto": "ada@example.com"
}' { "success": true, "id": "sub_8f2a91c…" }
# Email lands in sales@ollastack.com.
# Reply-To: ada@example.com → hit reply, talk to the lead.