Hi, I'm trying to send mails from a flash movie using php to an e-mail adress.
I've saved the php doc in ISO-Latin 1.

But I when trying to use special characters like å,ä,ö, it screws up the mail.

this is the php-code i'm using:

<?php

$sendTo = "henrik@frenne.com";
$subject = "Bokning - Hemsida";

$headers = "From: " . $_POST["firstName"] ." ". $_POST["Company"] . "<" . $_POST["Email"] .">\r\n";
$headers .= "Reply-To: " . $_POST["Email"] . "\r\n";
$headers .= "Return-path: " . $_POST["Email"];

$messa = $_POST["FirstName"];
$messb = $_POST["Email"];
$messc = $_POST["Company"];
$messd = $_POST["ToComments"];

$message = "Sent By: $messa\nSenders Email: $messb\nSenders Company: $messc\n\nMessage Sent:\n$messd";
mail($sendTo, $subject, $message, $headers);

Print "_root.txt.t4.EmailStatus=Klart - Din bokning har skickats";
?>


I've included all the chars i the text-boxes in flash.

What am I missing? Any suggestions are welcome