Built-in contact form so visitors can ask questions without leaving the page. It contains several configurable fields and an optional GDPR checkbox.
With Boei, you can create a flexible contact form widget for your website within minutes. It is super simple!
This is how it will look like:

How to get there: Go to Setup → Widget in the top menu → click your widget → click Add Channel and select Contact Form.
See Installation Guides.
It is super easy to set up your contact form. You can customize all the texts.

You can add a name field to capture the customer's name. To display, fill in a text in the optional field (e.g. "Name").
Boei can add a GDPR or other privacy related checkbox.
You can send the results to email, Slack, or a webhook.
Send the Boei results to Slack. The required Slack settings are explained in the Slack article.


You can connect Boei to 1000+ other available services. This article explains how you can set it all up.
Boei will send a webhook that looks like this:
{
"timestamp": "2021-05-16T17:25:50.557179Z",
"gdpr_checked": "true",
"name": "Ruben Buijs",
"email": "[email protected]",
"message": "Hey, can you please help me with this question?",
"page_title": "Example page",
"page_url": "yourwebsite.com"
}
The contact-form copy was refreshed for clarity, and hover and focus states on inputs and the submit button are more visible so visitors can tell what they're interacting with.
Form-relay emails now set a correct reply-to address, the visitor's email, so hitting Reply from your mail client goes straight to the visitor instead of Boei's outbound address.
It is possible to prefill email and name fields (if turned on). This way customers don't have to repeat their email to reach out.
To enable this, add a hidden field to your page:
<input type="hidden" value="[email protected]" id="boei_prefill_customer_email" />
<input type="hidden" value="Mr Test" id="boei_prefill_customer_name" />
Give it a test to see if everything is set up correctly.
Done!