Please replace the ??? with your data!
The site above is hosted by Fasthosts in the UK, who have some specific requirements for outgoing email sent viaa form (the following from their help documentation):
2) To stop misuse of your form by third parties the sendmail_from variable should be set to your Fasthosts hosted email address. While access to the php.ini file is restricted on our shared environment, you can sent this variable using the ini_set() command, shown below.
3) A fifth parameter -f should be added to the sendmail function. This will set the name of the from email address.
They give an example as follows:
$sent = mail($email_to, $email_subject, $message, $headers, '-f .$email_from');
Is there any way of adapting CForms to comply with the above? I've looked in a number of files, but I can't work it out...
Thank you in advance for any help you can offer.