Thank you for your feedback
A webpage with an email form can be created or updated by adding some HTML specific to the Turbify system to your page.
Jump to:
You can add a new email form to a page by adding the HTML code for a form that includes the Turbify form action and a hidden form input tag to set the destination email.
The form action is:
For the input field, the parameters to use are:
Adding the HTML directly will look like this:
<form method=post action="https://raven.turbify.biz/genemail"> <input type="hidden" name="to" value="email@domain.tld">
Here are some things to keep in mind when creating the form:
If an error message occurs when attempting to submit a form, please check that the correct form action is being used, and the requirements above are met.
An existing HTML email form can be updated by updating the form action and adding the input field to specify the destination. For the new form action and destination input field, see the section above on adding a new form.
To find the old form action to replace, search in the HTML code of your form for the form action. If the action contains either of the the following in the URL, it should be updated:
To update the action, replace the complete form action inside the quotes with the new URL (https://raven.turbify.biz/genemail) to match the example above. Then add a new form tag for the input field with the destination email address.
See Also: