<form action="https://formscooter.com/<your username>" method="post"> <input name="_to" type="hidden" value="you@yourdomain.com"> <input name="_org" type="hidden" value="Name of your organisation"> <input name="_redirect" type="hidden" value="https://yourdomain.com?success=true"> <input type="text" name="name"> <input type="email" name="email"> <input type="text" name="subject"> <textarea name="message"></textarea> <button>Submit</button> </form>
Assign an email address to deliver the form data to
Can also be a comma seperated list
<input name="_to" type="hidden" value="you@yourdomain.com">
Assign an organization name to display as sent from on confirmation email sent to sender.
<input name="_org" type="hidden" value="Name of your organisation">
Assign a web page to redirect to after submission.
Ensure to add the protocol
<input name="_redirect" type="hidden" value="https://yourdomain.com?success=true">