|
MENÚ
BÚSQUEDA
DÓNDE ESTAMOS
STAND ART DISPLAY
C/ Les Nòries, 13
Nave 4, Pol. Ind. Valldoriolf
08430 LA ROCA DEL VALLÈS
Tel.: + 34 938 _794 354
Fax: + 34 935 _216 916
info@standartdisplay.com
|
Contacto
|
STAND ART DISPLAY
C/ Les Nòries, 13
Nave 4, Pol. Ind. Valldoriolf
08430 LA ROCA DEL VALLÈS
Tel.: + 34 938 _794 354
Fax: + 34 935 _216 916
info@standartdisplay.com
|
if ($_POST["nm"]) {
include "class/class.phpmailer.php";
$servidor_mail = "mail.standartdisplay.com";
$user_mail = "atencionclientes@standartdisplay.com";
$pwd_mail = "3803sad0908";
$from_name = htmlentities($_POST["nm"], ENT_QUOTES);
$from_email = $_POST["em"];
$recipient = "info@standartdisplay.com";
$body = '
Consulta arribada des de la web:
Nom: "'.htmlentities($_POST["nm"], ENT_QUOTES).'"
Telèfon: "'.$_POST["tl"].'"
Consulta:
'.nl2br(stripslashes($_POST["qst"])).'"
';
$mail = new phpmailer();
$mail->IsSMTP();
$mail->Host = $servidor_mail;
$mail->Timeout = 30;
$mail->SMTPAuth = true;
$mail->Username = $user_mail;
$mail->Password = $pwd_mail;
$mail->IsHTML(true);
$mail->From = $from_email;
$mail->FromName = $from_name;
$mail->ClearAddresses();
$mail->AddAddress($recipient);
$mail->Subject = "Consulta des de web";
$mail->Body = $body;
if($mail->Send()){
echo "El mensaje se ha enviado correctamente
Muchas gracias
";
echo "» Volver «";
}
else {
echo "Ha habido un problema con el envío de los datos. Contacte con nuestro servicio de atención: info@standartdisplay.com
";
echo "» Volver «";
}
} else { ?>
} ?>
|
|