<?php
include_once("WebOpenPatch.php");
$wop = new WebOpenPatch();
$subject = $wop->wopAntiSqlInjection($_POST['subject']);
$to = 'faleconosco@dominio.com.br';
$msg = $wop->wopAntiSqlInjection($_POST['msg']);
if ($wop->wopAntiMailInjection($_POST['from'])) {
$from = $_POST['from'];
} else {
die("Email do remetente inválido!");
}
if (mail($to, $subject, $msg, "From: {$from}\n")){
echo "Sua mensagem foi encaminhada com sucesso para {$to}.";
} else {
echo "Falha ao enviar a mensagem.";
}
?>
|