include("../administracion/inc/config.php");
$correopaypal="yescentrointegral@hotmail.com";
if($_POST["pc"]=="undefined" || $_POST["pc"]>6 || !is_numeric($_POST["pc"]))
{
$_POST["pc"]="";
}
if($_POST["nombre"]!="")
{
$sqlp="select * from promociones where idpromociones=".$_REQUEST["idpromocion"]."";
$resp=mysql_query($sqlp,$link)or die("error seleccionando el registro ".$sqlp);
if($resp!="")
{
$rowp=mysql_fetch_array($resp);
}
////insertamos un registro con el pedido
$sql="insert into pedidos (fecha_pedidos,nombre_pedidos,celular_pedidos,telefono_pedidos,email_pedidos,nombre_r_pedidos,email_r_pedidos,felicitacion_r_pedidos,tipo_pago_pedidos,articulo_pedidos,precio_pedidos,promocion_pedidos) values('".date("Y-m-d")."','".$_REQUEST["nombre"]."','".$_REQUEST["celular"]."','".$_REQUEST["telefono"]."','".$_REQUEST["email"]."','".$_REQUEST["nombre_r"]."','".$_REQUEST["email_r"]."','".$_REQUEST["felicitacion_r"]."','".$_REQUEST["tipo_pago"]."','".$rowp["titulo_promociones"]."','".$rowp["precio".$_POST["pc"]."_promociones"]."','".$rowp[0]."')";
$res=mysql_query($sql,$link)or die("error insertando el registro ".$sql);
$numpedido=mysql_insert_id();
$sql="select * from correosventas where idcorreosventas=1";
$res=mysql_query($sql,$link)or die("error seleccionando el registro ".$sql);
if($res!="")
{
$row=mysql_fetch_array($res);
}
if($_REQUEST["tipo_pago"]=="paypal")
{
$instrucciones=$row["tarjeta_de_credito_correosventas"];
$plantilla="paypal.html";
}
if($_REQUEST["tipo_pago"]=="oxxo")
{
$instrucciones=$row["pago_en_oxxo_correosventas"];
$plantilla="oxxo.html";
}
if($_REQUEST["tipo_pago"]=="bancos")
{
$instrucciones=$row["deposito_bancario_correosventas"];
$plantilla="bancos.html";
}
///enviamos un email conla informacion del pedido
include_once('../administracion/PHPMailer/class.phpmailer.php');
$mail = new PHPMailer(); // defaults to using php "mail()"
$body = $mail->getFile($plantilla);
$body = str_replace("\r","
",str_replace("|instrucciones|",$instrucciones,$body));
$body = str_replace("\r","
",str_replace("|condiciones|",$rowp["condiciones_compra_promociones"],$body));
$body = str_replace("|titulo_promociones|",$rowp["titulo_promociones"],$body);
$body = str_replace("|precio|",number_format($rowp["precio".$_POST["pc"]."_promociones"],0),$body);
$body = str_replace("|cliente|",$_REQUEST["nombre"],$body);
$body = str_replace("|numpedido|",$numpedido,$body);
$body = str_replace("|telefono|",$_REQUEST["telefono"],$body);
$body = str_replace("|celular|",$_REQUEST["celular"],$body);
$body = str_replace("|email|",$_REQUEST["email"],$body);
$body = eregi_replace("[\]",'',utf8_encode($body));
$mail->From = "info@centrobellezaysalud.com";
$mail->FromName = "Centro Belleza y Salud";
$mail->Subject = "Información de compra pedido:".$numpedido."";
$mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
$mail->MsgHTML($body);
$mail->CharSet = 'UTF-8';
$mail->AddAddress($_REQUEST["email"],$_REQUEST["nombre"] );
$mail->AddBCC("info@centrobellezaysalud.com","Pedido pagina web ".$rowp[0]."");
$mail->AddAddress("ricanica@hotmail.com",$_REQUEST["nombre"] );
//$mail->AddAddress("ricardoc@pagenetonline.com",$_REQUEST["nombre"] );
//$mail->AddAttachment("images/phpmailer.gif"); // attachment
if(!$mail->Send()) {
$mensaje= "Error enviando el mensaje " . $mail->ErrorInfo;
} else {
$mensaje= "Mensaje enviado";
}
}
?>