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:
Adding a new form
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:
- https://raven.turbify.biz/genemail
For the input field, the parameters to use are:
- type: hidden
- name: to
- value: A destination email address on your domain
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:
- The destination email must be an address on the same domain the form is hosted on.
- The form action and input tags are case-sensitive. Be sure to use all lowercase.
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.
Updating an existing form
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:
- webhosting.yahoo.com/forms?
- webhosting.luminate.com/forms?
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: