Hi
I have installed Mambo in one of my sites and am trying to customise it. I have glitch on it. It is this:
When a new user creates an account the next page shows this error:
" Warning: From not in internet syntax: in
/home/xxxxxx/mambo/registration.php on line 120"
"Warning: From not in internet syntax: in /home/xxxxx/mambo/registration.php
on line 140"
The code snippet at these locations are:
line 116
$headers .= "From: Administrator <$live_site>\n";
$headers .= "X-Sender:<$live_site> \n";
$headers .= "X-Mailer: PHP\n"; // mailer
$headers .= "Return-Path: <$email>\n"; // Return path for
errors
mail($recipient, $subject, $message, $headers);
and line 136
$headers2 .= "From: Administrator <$live_site>\n";
$headers2 .= "X-Sender:<$live_site> \n";
$headers2 .= "X-Mailer: PHP\n"; // mailer
$headers2 .= "Return-Path: <$adminEmail>\n"; // Return path
for errors
mail($recipient2, $subject2, $message2, $headers2);
No mail is sent to the registrant.
Can you please give me a solution?
Thanks
S.K