I'd like to know a method for sending a form
that does not have the email
field. You will have only three fields: Nome
, Telefone
and Cidade
.
However, when shipping arrives this way
ThecodeIhave:
<?phprequire_once('PHPMailer-master/PHPMailerAutoload.php');PHP_OS=="Linux" ? $quebra_linha = "\n" : $quebra_linha = "\r\n";
$nome = trim($_POST["nome"]);
$tel = $_POST["telefone"];
$cid = $_POST["cidade"];
switch ($cid) {
case "ipatinga":
$destino = "[email protected]";
break;
case "fabriciano":
$destino = "[email protected]";
break;
case "timoteo":
$destino = "[email protected]";
break;
}
$email = "<br><b>NOME:</b> ".$nome."<br><b>TELEFONE:</b> ".$tel." <br> <b>CIDADE:</b> ".$cid."</body></html>";
$mail = new PHPMailer();
$mail->IsMail();
$mail->SetFrom($eml, $nom);
$mail->Subject = "Agendamento de visita";
$mail->MsgHTML($email);
$mail->AddAddress($destino, utf8_decode('Unimed'));
if (!$mail->send())
$msgerro = "Não foi possível enviar sua mensagem de contato. Tente novamente dentro de alguns instantes.";
else
$msgerro = "Sua mensagem de contato foi enviada com sucesso!";
?>
How do you make sure that Root User
and [email protected]
have custom data?