A custom confirmation page is often used to keep the look and feel of a website uniform throughout.
At this time, Turbify does not support custom confirmation pages with HTML email forms. However, there is a method of preventing the form submission process from navigating your visitor completely away from your site that is available.
This can be accomplished with the following:
- Open your form page for editing in HTML.
- Locate the submit tag in the form HTML. Update the tag to include the parameter formtarget="_blank", similar to the following:
<input type="submit" formtarget="_blank" value="Send" />
Note: Replace the contents of the "value" parameter with the text that you want displayed on your form submit button.
- Save your changes.
When using this submit tag, clicking the Submit button will open a new tab to submit the form. After the form is submitted, a visitor will be able to close the tab and still be on your site.