Contact Form
Email
Form Processing
Description
Content type : application/json
Sends contact us form emails with customer information. Optionally includes system information like IP address and geolocation data.
Request Body
Required
{
"clientId": "your-client-id",
"clientSecret": "your-client-secret",
"emailTo": ["support@yourcompany.com", "info@yourcompany.com"],
"contactEmail": "customer@example.com",
"contactPhoneNumber": "+1234567890",
"contactFirstName": "John",
"contactLastName": "Doe",
"contactMessagee": "I would like to inquire about your services and pricing.",
"includeSystemInfo": true
}
Field Descriptions:
- clientId, clientSecret - Authentication credentials (required)
- emailTo - Array of recipient email addresses (required)
- contactEmail - Customer's email address (optional)
- contactPhoneNumber - Customer's phone number (optional)
- contactFirstName - Customer's first name (optional)
- contactLastName - Customer's last name (optional)
- contactMessagee - Customer's message (optional)
- includeSystemInfo - Whether to include IP and geolocation data (optional, default: false)