Hi,
The problem is that the conditions field is being truncated.
This is caused by a security feature in FormMail.
Look for the setting called MAXSTRING. It is 1024 by default and your long conditions field is being truncated by that.
You can increase the value to resolve the problem.
Or, better still, use multiple conditions fields. Like this:
Code:
<input type="hidden" name="conditions1" value="..." />
<input type="hidden" name="conditions2" value="..." />
<input type="hidden" name="conditions3" value="..." />
Each conditions field can have multple tests (and will be truncated to MAXSTRING bytes - so keep them below that).
There's no limit to the number of conditions fields you can specify.
Bookmarks