Hi,
I have my domain parked at a webhotell, so the server is not mine.
If I send email to somebody with the script below the "from" adress loooks like
info.mydomain.com[info.mydomain.com@server.nu]
Code used:
$toadress=$epost;
$subject="subject";
$mailcontent="contect";
$fromadress="info.mydomain.com";
mail($toadress, $subject, $mailcontent, $fromadress);
Well, but I looked at the output (email) from the phpBB board I've installed. In that adress "from" I only see:
info.mydomain.com
I want my output also look like that. Is there something wrong with the code, so the server is adding it's own information??