PHP - Enviar lsita de productos del carrito a mi mail

 
Vista:

Enviar lsita de productos del carrito a mi mail

Publicado por Juan (6 intervenciones) el 19/03/2015 04:49:12
Hola, les cuento que estoy haciendo una página para vender productos de mi negocio, pero a diferencia de un eShop o eCommerce normal con carrito de compras, lo suplante por "Productos a Cotizar", ese sería mi carrito. Osea, el cliente agrega diferentes productos a la Lista de Productos a Cotizar, y luego en vez de el típico botón "Pagar" o "Proceder al Pago" le puse el botón "Solicitar Cotización".

AHORA, lo que quiero hacer es que se envíe a mi mail esa lista de productos que esta en el "Carrito" para poder yo contactarlo a él y enviarle la cotización correspondiente.

Este es el código del "Carrito":

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?php require_once('Connections/ConexTiendaWeb.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
  if (PHP_VERSION < 6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  }
 
  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
 
  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  }
  return $theValue;
}
}
 
mysql_select_db($database_ConexTiendaWeb, $ConexTiendaWeb);
$query_DatosCot = "SELECT * FROM tblcotizacion";
$DatosCot = mysql_query($query_DatosCot, $ConexTiendaWeb) or die(mysql_error());
$row_DatosCot = mysql_fetch_assoc($DatosCot);
$totalRows_DatosCot = mysql_num_rows($DatosCot);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/BaseIndex.dwt.php" codeOutsideHTMLIsLocked="false" -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- InstanceBeginEditable name="doctitle" -->
<title>Documento sin título</title>
<!-- InstanceEndEditable -->
<!-- InstanceBeginEditable name="head" -->
<!-- InstanceEndEditable -->
<link href="css/Principal.css" rel="stylesheet" type="text/css" />
<link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
<script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
</head>
<body>
<div class="container">
<div class="header">
<div class="headerinterior">
  <ul id="MenuBar2" class="MenuBarHorizontal">
    <li><a href="cot_list.php">Productos a Cotizar</a></li>
  </ul>
</div>
  <div class="menudesplegable">
    <ul id="MenuBar1" class="MenuBarHorizontal">
      <li><a href="index.php">Inicio</a>      </li>
      <li><a href="Categories.php" class="MenuBarItemSubmenu">Productos</a>
        <ul>
          <li><a href="#">Elemento sin título</a></li>
          <li><a href="#">Elemento sin título</a></li>
          <li><a href="#">Elemento sin título</a></li>
        </ul>
      </li>
<li><a href="#">Contacto</a></li>
    </ul>
  </div>
  </div>
 
 
  <div class="content"><!-- InstanceBeginEditable name="Contenido" -->
  <p><strong>Lista de Productos a Cotizar.</strong></p><table width="100%" border="0">
  <tr>
    <td>Producto</td>
    <td>Unidades</td>
    <td>Acciones</td>
  </tr>
  <?php do { ?>
  <tr>
    <td><?php echo ObtenerNombreProducto($row_DatosCot['idProducto']); ?></td>
    <td><?php echo $row_DatosCot['intCantidad']; ?></td>
    <td>Eliminar</td>
  </tr>
  <?php } while ($row_DatosCot = mysql_fetch_assoc($DatosCot)); ?>
  </table>
&nbsp;</p>
  <!-- InstanceEndEditable -->
    <!-- end .content --></div>
  <div class="footer"><div class="footerinterior">Pie de página<!-- end .footer --></div></div>
<!-- end .container --></div>
<script type="text/javascript">
var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"../SpryAssets/SpryMenuBarDownHover.gif", imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
var MenuBar2 = new Spry.Widget.MenuBar("MenuBar2", {imgDown:"../SpryAssets/SpryMenuBarDownHover.gif", imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
</script>
</body>
<!-- InstanceEnd --></html>
<?php
mysql_free_result($DatosCot);
?>


SALUDOS Y GRACIAS DESDE YA.!
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder
Imágen de perfil de Alejandro Lopez

Enviar lsita de productos del carrito a mi mail

Publicado por Alejandro Lopez (14 intervenciones) el 21/03/2015 05:34:15
Dale una mirada a: class.phpmailer.php
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar