Checkmark

Thank you for your feedback

Can I use a confirmation page with an email form?

Learn about opening form submissions in a new tab.

Article ID: SLN19970

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:

  1. Open your form page for editing in HTML.
  2. 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.
      
  3. 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.