ok thx,
i got this problem sorted out now

however a new problem appeared!
http://www.hurring.c...php/html_email/ <--- i fallowed this example to send email like html. charset and everything is set up in that code. it shows my čžš letters also. But when using this code, the emails i sent have in "from" line my servers email ...
my email code:
mail("$user[ur_mail]",$naziv,$msg_body,$headers);
and i put:
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=windows-1250\r\n";
$headers .= "<link rel=\"stylesheet\" type=\"text/css\" href=\"style1.css\">";
$headers .= "From: $admin_email";
and this prints the right email address inside of each email in the body of html ... I need this "From: $admin_email"
to show in the from line of the email and not in the body :S
thx