eğer yazdığını doğru anladıysam "mime type force download" konusunu araştırırsan işini görecektir

$file = "test.msg";
header("Content-disposition: attachment; filename=".$file);
header("Content-type: application/download");
readfile($file);
?>