Foros del Web » Programando para Internet » PHP »

PHP OO jcart; enviar formulario de contacto + productos a correo

Estas en el tema de jcart; enviar formulario de contacto + productos a correo en el foro de PHP en Foros del Web. Hola! espero me puedan ayudar, necesito enviar junto con la cotización de los clientes los datos de estos pero no lo he podido lograr , ...
  #1 (permalink)  
Antiguo 29/07/2016, 16:37
 
Fecha de Ingreso: julio-2016
Mensajes: 1
Antigüedad: 7 años, 9 meses
Puntos: 0
Exclamación jcart; enviar formulario de contacto + productos a correo

Hola! espero me puedan ayudar, necesito enviar junto con la cotización de los clientes los datos de estos pero no lo he podido lograr , les mando parte del gateway

Código PHP:
<?php
// JCART v1.1
// http://conceptlogic.com/jcart/

// THIS FILE IS CALLED WHEN ANY BUTTON ON THE CHECKOUT PAGE (PAYPAL CHECKOUT, UPDATE, OR EMPTY) IS CLICKED
// WE CAN ONLY DEFINE ONE FORM ACTION, SO THIS FILE ALLOWS US TO FORK THE FORM SUBMISSION DEPENDING ON WHICH BUTTON WAS CLICKED
// ALSO ALLOWS US TO VERIFY PRICES BEFORE SUBMITTING TO PAYPAL

// INCLUDE JCART BEFORE SESSION START
include_once 'jcart.php';

// START SESSION
session_start();

// INITIALIZE JCART AFTER SESSION START
$cart =& $_SESSION['jcart']; if(!is_object($cart)) $cart = new jcart();

// WHEN JAVASCRIPT IS DISABLED THE UPDATE AND EMPTY BUTTONS ARE DISPLAYED
// RE-DISPLAY THE CART IF THE VISITOR CLICKS EITHER BUTTON
if ($_POST['jcart_update_cart']  || $_POST['jcart_empty'])
   {

   
// UPDATE THE CART
   
if ($_POST['jcart_update_cart'])
      {
      
$cart_updated $cart->update_cart();
      if (
$cart_updated !== true)
         {
         
$_SESSION['quantity_error'] = true;
         }
      }

   
// EMPTY THE CART
   
if ($_POST['jcart_empty'])
      {
      
$cart->empty_cart();
      }

   
// REDIRECT BACK TO THE CHECKOUT PAGE
   
header('Location: ' $_POST['jcart_checkout_page']);
   exit;
   }

// THE VISITOR HAS CLICKED THE PAYPAL CHECKOUT BUTTON
else
   {



   
///////////////////////////////////////////////////////////////////////
   ///////////////////////////////////////////////////////////////////////
   /*

   A malicious visitor may try to change item prices before checking out,
   either via javascript or by posting from an external script.

   Here you can add PHP code that validates the submitted prices against
   your database or validates against hard-coded prices.

   The cart data has already been sanitized and is available thru the
   $cart->get_contents() function. For example:

   foreach ($cart->get_contents() as $item)
      {
      $item_id   = $item['id'];
      $item_name   = $item['name'];
      $item_price   = $item['price'];
      $item_qty   = $item['qty'];
      }

   */
   ///////////////////////////////////////////////////////////////////////
   ///////////////////////////////////////////////////////////////////////

   
$valid_prices true;

   
///////////////////////////////////////////////////////////////////////
   ///////////////////////////////////////////////////////////////////////

   // IF THE SUBMITTED PRICES ARE NOT VALID
   
if ($valid_prices !== true)
      {
      
// KILL THE SCRIPT
      
die($jcart['text']['checkout_error']);
      }

   
// PRICE VALIDATION IS COMPLETE
   // SEND CART CONTENTS TO PAYPAL USING THEIR UPLOAD METHOD, FOR DETAILS SEE http://tinyurl.com/djoyoa
   
else if ($valid_prices === true)
      {

    
// Here we will construct a new email message to be sent to the merchant
    //  upon completion of the checkout process. The example message below is
    //  intentionally simplistic, and meant to be modified to your preferences.
    
$message "New Order:\n\n";
    
$message .= "Order made by: " $_POST['username'];

      foreach (
$cart->get_contents() as $item)
         {
         
$message .= 'Item: ' $item['name'];
         
$message .= "\nPrecio: " $item['price'];
         
$message .= "\nCantidad: " $item['qty'];
         
$message .= "\n\n";
         
$i++;
         }
              
$message .='Informacion del Cliente';
              
$message .= "\n\n";
              
$message .='Name : '.$_POST['name'];
              
$message .= "\n\n";
              
$message .='Email : '.$_POST['email'];
              
$message .= "\n\n";
              
$message .='Phone : '.$_POST['phone'];

    
// The following line uses PHP's built-in mail() function to send the email.
    //  Most servers/hosts support this method by default, while others may
    //  require it to be enabled, or configured differently. For more information
    //  about the mail() function see: http://php.net/manual/en/function.mail.php
    //


    // The function call returns a boolean value indicating whether the mail was
    //  successfully accepted by the server's mail daemon for delivery.
    
    
    
$mailSent mail('[email protected]''ORDEN DE COMPRA'$message"From: $email");


      
// EMPTY THE CART
      
$cart->empty_cart();
      
      
// Done! You can either output a purchase "reciept" here, or redirect the
      //  user to another page.
      
echo "<h1>Su pedido ha sido enviado</h1>";

      }
   }
?>
espero me puedan ayudar :D !!
  #2 (permalink)  
Antiguo 30/07/2016, 14:50
 
Fecha de Ingreso: noviembre-2003
Ubicación: Zaragoza, España
Mensajes: 1.257
Antigüedad: 20 años, 5 meses
Puntos: 154
Respuesta: jcart; enviar formulario de contacto + productos a correo

Hola Kpezoa,

Yo que tú probaría aquí: http://conceptlogic.com/jcart/help/

Etiquetas: Ninguno
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 18:13.