Hi!
In /include/email_confirmation.php, on line 24, the line reads $headers .= "X-Mailer: " . $SERVER_NAME . NewPHPLinks"\n";
This causes an error.
I guess it should read $headers .= "X-Mailer: " . $SERVER_NAME . "NewPHPLinks\n";
The same is in include/email_addition.php on line 19.
The bug might be in other files, too.
Maybe, someone should check this.
Christian
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I had that error too, until I corrected it. the brackets < > are missing on line 24. Look at line 22 and line 23. Line 24 should look like them in style, so just add the brackets to all 3 email php files and it should work fine.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi!
In /include/email_confirmation.php, on line 24, the line reads $headers .= "X-Mailer: " . $SERVER_NAME . NewPHPLinks"\n";
This causes an error.
I guess it should read $headers .= "X-Mailer: " . $SERVER_NAME . "NewPHPLinks\n";
The same is in include/email_addition.php on line 19.
The bug might be in other files, too.
Maybe, someone should check this.
Christian
I had that error too, until I corrected it. the brackets < > are missing on line 24. Look at line 22 and line 23. Line 24 should look like them in style, so just add the brackets to all 3 email php files and it should work fine.
line 24 works when it looks like this:
$headers .= "X-Mailer: " . $SERVER_NAME . " - NewPHPLinks\n";
does not need <> because that line is does not include a email address whereas 22 and 23 will put in email address which need <>.
so if it has $owner_email then it need <> notice "_email"