E' giusto questo codice per inviare una mail dal mio sito?
Il dati al file vengono passati tramite un filmato .swf

Codice PHP:
<?php 


$to
="MIA MAIL";
$intest="INTESTAZIONE MAIL";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n"

$body="
<style type='text/css'>
body {font-family: Verdana;font-size: 12px;color: #0066CC;background-color: #FFFFFF;}
</style>
[b]Dati:[/b]

Indirizzo eBAY: 
$account

E-Mail: 
$mail

Prodotto che interessa: 
$oggetto

Testo: 
$message
"
;

mail ($to$intest$body$headers);


?>