@PabloMontero So the template will format the email that’s being sent from the form? I’m new to Webflow and love discovering better ways to do things.
This is my first Webflow website, my Web Design company. That is what the form is for. Everything comes through perfect from the webflow native built form.
Now I embed the html inside the form block and when I send the form it takes me the failure page, it seems as if the problem came from the formmail.php. I can not find where the problem is, maybe it’s a syntax error? Can you please help me with this?
I followed the steps ahead briefly - even editing: $TARGET_EMAIL, $AT_MANGLE and the HTML Embed…but I only get the following Error-Message when I try to send the form:
Parse error : syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or ‘}’ in /homepages/40/d359852156/htdocs/formmail.php on line 199
If I look up line 199 it only says: “private $_sPHPVersionString;”
I’m pretty sure I’m doing something wrong, but can’t figure out what it is… Does someone may explain the Error-Text to me pls?
Hi Guys, we have developed a service called Form Sparrow to take care of your custom form alternative. You can check it out here and let me know your thoughts www.formsparrow.com - We are open to any suggestions to make it the ultimate solution.
Hi, looks interesting. Think theres an issue when creating new accounts. Says “Account already exists”. Let me know if you’ve fixed this. I’m interested in looking at this further.
Hey there Kane @Octa_Creative, thank you for your message. We are busy checking this for you and will revert shortly with a fix. Thanx for testing it out!
Makes no sense to me why anyone would pay a third party monthly fees for form processing when the form processor by tectite is free, secure and so simple to set up it takes mere minutes and is very robust.
I don’t know what else to do. The reCAPTCHA widget shows up on the published site but the user can still submit the form without checking the box. Which obviously defeats the purpose.
Even trying this on the sample form they have available for download, I can’t get the form to submit to my email. I get a success message but no email
Sample form: studiofus.co/sampleform.htm
Is anyone available to take a look and see what I’m missing?
would need to see the formail.php file in order to try and troubleshoot your setup. Also would need you to share the projects read only link so I can look at how you set the form up on the page.
@hunter did you solve this? Just saw the message might be able to assist. would need to see the read only link to the site so can try and troubleshoot. however maybe these instructions will suffice.
make sure the form works without recaptcha first so to insure there are no other issues.
the recaptcha validation via the webflow panel serves no purpose in this instance.
both the recaptcha public key AND secret (aka private) key have a spot. private key goes into the formmail.php form.
public key goes into the form on the page usually just before the submit button in a div: class=“g-recaptcha” data-sitekey=“your_site_key”
also be sure you are using formmail 9.15 or later.
Here’s the formmail.php parts (this isn’t the sample form, but the code for the test page) for the real contact page I’m trying to do. I’m wondering if it’s my host or server, not the code, as nothing loads.
$TARGET_EMAIL = array($EMAIL_NAME . “@studiofus.co$”);
$EMAIL_ADDRS = array();
$DEF_ALERT = “hell@studiofus.co”;
This is the form code: <form data-name="Get In Touch Form" name="wf-form-Get-In-Touch-Form" method="post" action="http://www.studiofus.co/formmail.php" class="get-in-touch-form"><label for="name">Name</label><input type="text" class="text-field cc-contact-field w-input" maxlength="256" name="name" data-name="Name" placeholder="Enter your name" id="Name"><label for="Email-2">Email Address</label><input type="email" class="text-field cc-contact-field w-input" maxlength="256" name="Email" data-name="Email" placeholder="Enter your email" id="Email" required=""><label for="Message">Message</label><textarea id="Message" name="Message" placeholder="Hi there, I’m reaching out about the following..." maxlength="5000" data-name="Message" class="text-field cc-textarea cc-contact-field w-input"></textarea><input type="submit" value="Submit" data-wait="Please wait..." class="button w-button"></form>