Nome: '.$_GET['nome'].'
Empresa: '.$_GET['empresa'].'
E-mail: '.$_GET['email'].'
Telefone: '.$_GET['telefone'].'
Mensagem:
'.nl2br($_GET['mensagem']).'
'; //para o envio em formato HTML $headers = "MIME-Version: 1.0\n"; $headers .= "Content-type: text/html; charset=iso-8859-1\n"; //endereço do remetente $headers .= "From: ".$_GET['nome']." <".$_GET['email']."> \r\n"; mail($destinatario,$assunto,$corpo,$headers); mail($destinatario2,$assunto,$corpo,$headers); ?>