我将尝试使用 simplecart 中的 sendform 方法发送更多详细信息。我可以发送项目详细信息,但无法发送 extra_data 属性。
结帐页面底部的脚本
<script>
simpleCart({
checkout: {
type: "SendForm" ,
url: "http://www.####.com/process/sendform.php"
},
extra_data: {
company: "Company A",
email: "email@companya.com"
},
});
</script>
php脚本
<?php
$to = '####@gmail.com';
$subject = 'Simple Cart Order';
$content = $_POST;
$body = '';
for($i=1; $i < $content['itemCount'] + 1; $i++) {
$name = 'item_name_'.$i;
$quantity = 'item_quantity_'.$i;
$price = 'item_price_'.$i;
$company = 'extra_data_company_'.$i;
$body .= 'item #'.$i.': ';
$body .= $content[$name].' '.$content[$quantity].' '.$content[$price] $content[$company];
$body .= '<br>';
}
$headers = 'From: webmaster@example.com' . "\r\n" .
'Reply-To: webmaster@example.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $body, $headers);
Header('Location: thankyou.php');
?>