I have the following code
<?php
require_once('PHPMailer-master/PHPMailerAutoload.php');
PHP_OS == "Linux" ? $quebra_linha = "\n" : $quebra_linha = "\r\n";
//$emp = $_POST["empresa"];
$nome = trim($_POST["nome"]);
$tel = $_POST["telefone"];
$cid = $_POST["cidade"];
//$ass = $_POST["assunto"];
//$msg = $_POST["mensagem"];
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('[email protected]', 'Thiago Londe');
$mail->SetFrom($eml, $nom);
$mail->Subject = "Agendamento de visita";
$mail->MsgHTML($email);
//$mail->AddAddress($destino, "Thiago Londe");
$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!";
}
if($mail->send()) { ?>
<script language='javascript'>
alert('<?php echo $msgerro; ?>');
window.open('../#agendar-visita','_self');
</script>
I would like to know some way to display a modal commit as soon as the user submits the form.
Any suggestions?