<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>MachForm Community Forums Topic: remove email validation error on form</title>
<link>https://www.machform.com/forums/</link>
<description>MachForm Community Forums Topic: remove email validation error on form</description>
<language>en</language>
<pubDate>Mon, 04 May 2026 00:05:41 +0000</pubDate>

<item>
<title>yuniar on "remove email validation error on form"</title>
<link>https://www.machform.com/forums/topic/remove-email-validation-error-on-form#post-12492</link>
<pubDate>Thu, 25 Aug 2011 20:08:17 +0000</pubDate>
<dc:creator>yuniar</dc:creator>
<guid isPermaLink="false">12492@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Yes, you can set the code like this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$rules[element_name][&#38;#39;email&#38;#39;] = false;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I'm wondering why would you like to remove the validation though?
&#60;/p&#62;</description>
</item>
<item>
<title>timmer on "remove email validation error on form"</title>
<link>https://www.machform.com/forums/topic/remove-email-validation-error-on-form#post-12487</link>
<pubDate>Wed, 24 Aug 2011 22:24:22 +0000</pubDate>
<dc:creator>timmer</dc:creator>
<guid isPermaLink="false">12487@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;&#38;lt;&#38;lt;&#38;lt;If you no need the mail validation, I think you can use &#34;single line text&#34; field instead of email address. It's better. &#38;gt;&#38;gt;&#38;gt;&#60;/p&#62;
&#60;p&#62;Yeah, but if you use single line text you cannot make the reply to address the users email address.
&#60;/p&#62;</description>
</item>
<item>
<title>redityo on "remove email validation error on form"</title>
<link>https://www.machform.com/forums/topic/remove-email-validation-error-on-form#post-12485</link>
<pubDate>Wed, 24 Aug 2011 21:40:52 +0000</pubDate>
<dc:creator>redityo</dc:creator>
<guid isPermaLink="false">12485@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;If you no need the mail validation, I think you can use &#34;single line text&#34; field instead of email address. It's better.
&#60;/p&#62;</description>
</item>
<item>
<title>timmer on "remove email validation error on form"</title>
<link>https://www.machform.com/forums/topic/remove-email-validation-error-on-form#post-12479</link>
<pubDate>Wed, 24 Aug 2011 04:03:50 +0000</pubDate>
<dc:creator>timmer</dc:creator>
<guid isPermaLink="false">12479@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Could I just make the change below to ignore email validation on all form_id's?&#60;/p&#62;
&#60;p&#62;$rules[element_name]['email'] true;&#60;/p&#62;
&#60;p&#62;to&#60;/p&#62;
&#60;p&#62;$rules[element_name]['email'] false;
&#60;/p&#62;</description>
</item>
<item>
<title>timmer on "remove email validation error on form"</title>
<link>https://www.machform.com/forums/topic/remove-email-validation-error-on-form#post-12478</link>
<pubDate>Wed, 24 Aug 2011 04:01:54 +0000</pubDate>
<dc:creator>timmer</dc:creator>
<guid isPermaLink="false">12478@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;How would I change the syntax below to ignore email validation on form_id's 1,2 &#38;#38; 3?&#60;/p&#62;
&#60;p&#62;$rules[$element_name]['email'] = true;&#60;/p&#62;
&#60;p&#62;replace with this&#60;/p&#62;
&#60;p&#62;if ($form_id != '2') {&#60;br /&#62;
$rules[$element_name]['email'] = true;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;in that example email validation will be skipped when form id = 2, otherwise the form will have email validation.
&#60;/p&#62;</description>
</item>
<item>
<title>yuniar on "remove email validation error on form"</title>
<link>https://www.machform.com/forums/topic/remove-email-validation-error-on-form#post-4286</link>
<pubDate>Wed, 14 Jan 2009 12:37:15 +0000</pubDate>
<dc:creator>yuniar</dc:creator>
<guid isPermaLink="false">4286@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Another easier option would be using the &#34;Single Line Text&#34; field instead of &#34;Email&#34; field.
&#60;/p&#62;</description>
</item>
<item>
<title>redityo on "remove email validation error on form"</title>
<link>https://www.machform.com/forums/topic/remove-email-validation-error-on-form#post-4266</link>
<pubDate>Tue, 13 Jan 2009 20:41:26 +0000</pubDate>
<dc:creator>redityo</dc:creator>
<guid isPermaLink="false">4266@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hi, &#60;/p&#62;
&#60;p&#62;I'm curious why you want to do that :) , however you can remove email validation. To do so you should edit &#34;post-function.php&#34;, search around line 289 you will find these code :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$rules[$element_name][&#38;#39;email&#38;#39;] = true;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;replace with this&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if ($form_id != &#38;#39;2&#38;#39;) {
$rules[$element_name][&#38;#39;email&#38;#39;] = true;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;in that example email validation will be skipped when form id = 2, otherwise the form will have email validation.
&#60;/p&#62;</description>
</item>
<item>
<title>machformrocks on "remove email validation error on form"</title>
<link>https://www.machform.com/forums/topic/remove-email-validation-error-on-form#post-4264</link>
<pubDate>Tue, 13 Jan 2009 17:56:26 +0000</pubDate>
<dc:creator>machformrocks</dc:creator>
<guid isPermaLink="false">4264@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Is it possible to remove the email validation on the form when the person enters their email as &#34;junk&#34; &#60;/p&#62;
&#60;p&#62;Is there a way to stop the following validation error messages...&#60;/p&#62;
&#60;p&#62;--- Big Red Box ---&#60;br /&#62;
There was a problem with your submission.&#60;br /&#62;
Errors have been highlighted below.&#60;/p&#62;
&#60;p&#62;This field is not in the correct email format.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
