Hi,
I have a problem with "Mod Simple Contact"; when I trying to send an email from the website I get the error: "
Error: 0 Invalid address: Contatto amministrazione".
I saw that in the error message there are the words "Contatto amministrazione", I can find this words in "System -> Global Configuration -> Server -> Mail" inside the field "mailfrom".
So,
I have supposed that the problem it was caused from an error in the GET function. I'm trying to check the file "helper.php" in "/modules/mod_simplecontact", and from raws 63 to 67 there is the filed "mailfrom", and
all seems correct:
...
$fromEmail = $app->getCfg('mailfrom');
$fromName = $app->getCfg('fromname');
$fromArray = array($fromEmail, $fromName);
$body = 'There is message from:'."n";
$body .= "Email: $submit_email" . "n";
...
How can I resolve?
Also, it's possible to remove the "URL" field as a requested field?
Thank you