I have the following headers in my Mailer class
// domain is equal to current domain with capital letters if any
$from = domain;
$replyto = 'noreply@'.strtolower(domain);
$headers = "From: $from
Reply-To: ".$replyto;
$headers .= "
MIME-Version: 1.0
Content-Type: text/html; charset=\"utf-8\"
";
But for some reason when I send an email in my mailbox I receive an e-mail from myusername@myhost.com which is terrible. How can I have just my site name as the sender?