from php 4.4.4 to php 4.4.6

I used php code to convert the html forms information in to emails.
Untill today the hosting used php 4.4.4. version. Now they(hosting company) have started to use the php 4.4.6. version
With this new php version I don´t get the form information via email.
Any solution to fix this problem? 

<?
$from = "

------------------------------------------------------

Nome < $nome >
Sexo < $sexo >
Data de Nascimento < $data_nascimento >
Nacionalidade < $nacionalidade >
Morada < $morada >
Telefone < $telefone >
Email < $email >";
mail("xxxxxxx@hotmail.com",$subject=teste,$content="
Carta de Condução < $carta_conducao >

---------------------
Candidato-me a < $cargo >
Habilitações < $habilitacoes >
Conhecimentos de Informatica < $conhecimentos_informatica >
Que conhecimentos de Informatica < $quais_informatica >
conhecimentos de linguas < $conhecimentos_linguas >
experiencia profissional < $experiencia_profissional >
observaçoes < $observacoes >
Curriculum Vitae < $cv >

-------------------------------------------------------",$from);

header("Location: http://web06.olvt.com/");

exit;
?>