if($aux!="1")
{
?>
}
else
{
$corpo = "Nome:$_POST[nome]
E-mail: $_POST[mail_sender]
Mensagem: $_POST[msg]";
$bound = "XYZ-" . date("dmYis") . "-ZYX";
if (($fp = fopen($_FILES['arquivo']['tmp_name'],"rb")))
{
$anexo = fread($fp,filesize($_FILES['arquivo']['tmp_name']));
$anexo = base64_encode($anexo);
fclose($fp);
$anexo = chunk_split($anexo);
}
if ($anexo)
{
$mensagem = "--$bound\nContent-type: text/html\nContent-Transfer-Encoding: 7bit\n\n$corpo\n\n"
. "--$bound\nContent-type: $_FILES[arquivo][type]\nContent-Disposition: attachment; filename=" . $_FILES['arquivo']['name'] . "\nContent-Transfer-Encoding: base64\n\n$anexo\n"
. "--$bound\r\n";
mail("hpx@hpx.com.br",$assunto,$mensagem,"From: $_POST[mail_sender]\nMIME-Version: 1.0\nContent-type: multipart/mixed; boundary=\"$bound\"");
print("Enviado com Sucesso!");
}
else
{
mail("hpx@hpx.com.br",$assunto,$corpo,"From: $_POST[mail_sender]\nContent-type: text/html");
print("Enviado com Sucesso!");
}
}
?>