Mailer クラスに次のヘッダーがあります
// domain is equal to current domain with capital letters if any
$from = domain;
$replyto = 'noreply@'.strtolower(domain);
$headers = "From: $from\r\nReply-To: ".$replyto;
$headers .= "\nMIME-Version: 1.0\nContent-Type: text/html; charset=\"utf-8\"\r\n";
しかし、何らかの理由でメールボックスにメールを送信すると、myusername@myhost.com からメールが届きます。これはひどいものです。自分のサイト名だけを送信者として指定するにはどうすればよいですか?