PHP向错误的帐户发送电子邮件

时间:2017-05-23 17:28:50

标签: php forms email

我的PHP代码有效,但并不完美。当我回复我的表格并发送答案而不是将文本发送到我的电子邮件服务器或联系人时,他会发送到我的个人电子邮件。这很奇怪,因为我的个人电子邮件不在我的代码中,在任何代码行中都没有提到。我检查了我的服务器帐户,并且没有重定向到其他电子邮件。

error_reporting(E_ALL);

function pegaValor($valor) {
    return isset($_POST[$valor]) ? $_POST[$valor] : '';
}

function validaEmail($email) {
    return filter_var($email, FILTER_VALIDATE_EMAIL);
}

function enviaEmail($de, $assunto, $corpo, $para, $email_servidor) {
    $headers = "From: $email_servidor\r\n" .
               "Reply-To: $de\r\n" .
               "X-Mailer: PHP/" . phpversion() . "\r\n";
    $headers .= "MIME-Version: 1.0\r\n";
    $headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";

  mail($para, $assunto, nl2br($corpo), $headers);
}

$email_servidor = "eduarda@getescala.com";
$para = "eduarda@getescala.com";
$assunto = "Contato do Site - GetEscala";
$de = pegaValor("email");
$objetivos = pegaValor("objetivos");
$ondeanuncia = pegaValor("onde-anuncia");
$leads = pegaValor("leads");
$investimento = pegaValor("investimento");
$site = pegaValor("site");
$nome = pegaValor("nome");
$email = pegaValor("email");
$telefone = pegaValor("telefone");


$corpo = "Objetivos: " . $objetivos . "\n\n" . "Onde anuncia: " . $ondeanuncia . "\n\n" . "Leads ou vendas: " . $leads . "\n\n" . "Investimento: " . $investimento . "\n\n" . "Site: " . $site . "\n\n" . "Nome: " . $nome . "\n\n" . "E-mail: " . $email . "\n\n" . "Telefone: " . $telefone ;

if (validaEmail($de)) {
    enviaEmail($de, $assunto, $corpo, $para, $email_servidor);
    $pagina = "mail_ok.php";
} else {
    $pagina = "mail_error.php";
}

header("Location: $pagina");

1 个答案:

答案 0 :(得分:0)

决议:

我在cPanel上的服务器电子邮件忽略了将电子邮件发送到外部服务器(如gmail)的请求。因为我在cPanel上将eduarda@getescala.com重定向到我的个人电子邮件,所以我收到了其他电子邮件中的答案。

tl; dr我将重定向更改为另一个专业帐户,但不要使用相同域名的帐户。