Código PHP:
Ver originalif($tatus == "OK"){
$body1="<html>
<head>
<p><font face=Tahoma, Helvetica, sans-serif size=2 color=#333333>
<strong>Formulari de Contacte Web:</strong></font><br>
<br><hr width=450px align=left><br>
<font face=Tahoma, Helvetica, sans-serif size=2>
<title>Formulario de Contacto Web</title>
</head>
<body>
<strong>Nombre:</strong> $name.<br>
<strong>Teléfono:</strong> $phone.<br>
<strong>Título:</strong> $title: $otros2.<br>
<strong>Email:</strong> $email.<br>
<strong>Mensaje:</strong> $message.</font></p>
</body>
</html> ";
require_once 'phpmailer/class.phpmailer.php';
$mail = new PHPMailer ();
$mail -> AddAddress ("$email","$name");
$mail -> Subject = "$title: $otros2";
$mail -> IsHTML (true);
$mail -> IsSMTP();
$mail -> Host = 'mail.dominio.com';
$mail -> Port = 2626;
$mail -> SMTPDebug = 2;
$mail -> SMTPAuth = true;
$mail -> Password = 'password';
if ($mail -> Send())
{
$msg=" Enviado.";
}else{
$msgerror=" Error inesperado.";
}
$mail = new PHPMailer ();
$mail -> AddAddress("$headers4");
$mail -> Subject = "$title: $otros2";
$mail -> IsHTML (true); // pones (true) en caso de usar formato HTML
$mail -> IsSMTP();
$mail -> Host = 'mail.dominio.com';
$mail -> Port = 2626;
$mail -> SMTPAuth = true;
$mail -> Password = 'password';
$mail -> MsgHTML($body1);
$mail -> Send();
}
}else{
// No ha pasado la validación, aquí haces lo que tu quieras.
}
Algo así (añade la parte de código que falta al principio).