hi
im using postfix as my MTA..
this is a sample script in php to test
<?
$recipient = "[EMAIL PROTECTED]";
$from = "Somebody";
$message = " Hello";
$subject = "Testing";
mail($recipient, $subject, $message, "From: $from");
?>
but unfortunately
when i got the message
To: [EMAIL PROTECTED]
From: [EMAIL PROTECTED] <--------------------- the domain name was appended to the "Somebody"
Subject : Testing
Message:
Hello
how can i make simply as "Somebody" to appear on the From: line.
Thanks....
