任何人都有一个功能simplecart(js)的例子,通过电子邮件结账?

时间:2013-11-13 04:18:21

标签: simplecart

任何人都有一个功能性简单卡(js)的例子,通过电子邮件结帐?

所以我可以改变我的代码。

谢谢

1 个答案:

答案 0 :(得分:0)

将以下代码放在单独的php文件中。我用了sendcart.php。

<?php
 $to = 'youremail@email.com';
 $subject = 'Your Subject';
 $content = $_POST;
 $body = '';
 for($i=1; $i < $content['itemCount'] + 1; $i++) {
     $name = 'item_name_'.$i;
     $quantity =  'item_quantity_'.$i;
     $price = 'item_price_'.$i;
     $body .= 'item #'.$i.': ';
     $body .= $content[$name].' '.$content[$quantity].' '.$content[$price];
     $body .= '<br>';
 }
 $headers = 'From: youremail@email.com' . "\r\n" .
            'Reply-To: youremail@email.com' . "\r\n" .
         '   X-Mailer: PHP/' . phpversion();
 $headers .= "MIME-Version: 1.0\r\n";
 $headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
 mail($to, $subject, $body, $headers);
 Header('Location: thankyou.php');
 ?>

然后在您的html文件中,在脚本标记内包含以下行。

simpleCart({  
   checkout: { 
      type: "SendForm" , 
      url: "sendcart.php",
      method: "POST",
   }
});