okay! I've had a play!
This form normal script without custom mail recipient = working.
when I adjust the line:
[HTML]<input type="hidden" name="mailto" value="me@domain.com" />[/HTML] in the form script, to read:
[HTML]<input type="hidden" name="mailto" value="mailto" />[/HTML]
I've read that if it is an input field, it must be added to the required field, so I did:
[HTML]<input type="hidden" name="required" value="first_name,email,mailto" />[/HTML] (changed from "email_manager")
Side note: When i don't change required name as mentioned, our validator comes up, mentions it can't send for a reason, but cannot specify which field as it usually does.
And then in the form itself, the Managers Email input field is changed from:
[HTML]<li><label for="email_manager" class="required">Your H.O.S/Managers Email *</label>
<!--email --><input name=" email_manager " type="text" id=" email_manager " size="35%" />[/HTML]
to
[HTML]<li><label for="mailto" class="required">Your H.O.S/Managers Email *</label>
<!--email --><input name="mailto" type="text" id="mailto" size="35%" />[/HTML]
It comes up with an error saying:
formScript.pl Error
________________________________________
Bad hidden mailto .
Hidden maito's must be *OUR DOMAIN* email addresses only!
I've put several valid email addresses in - but no emails, and no acknowledgment emails. (App. they're auto - so my Cc prob is fixed)
I'm trying to nut it out with the programmers here, but I don't want to burden them - they're stressed enough!
Any ideas?