Jump to content

email shopping cart


fazzfarrell

Recommended Posts

I have this code to send my cart via email

<?php
if (isset($HTTP_POST_VARS["IMXeMailVForm1"])) {
$IMXMAIL = new MailCart();
$IMXMAIL->cart = &$HTTP_SESSION_VARS["icJag"];
$IMXMAIL->to = $HTTP_SESSION_VARS['MM_Username'];
$IMXMAIL->from = "Spgroup";
$IMXMAIL->subject = "##UNCONFIRMED ORDER##";
$IMXMAIL->cc = "mark.houston@******.co.uk";
$IMXMAIL->bcc = "kellyg@******.co.uk";
$IMXMAIL->message = "##UNCONFIRMED ORDER##";
$IMXMAIL->redir = "";
$IMXMAIL->send($HTTP_POST_VARS);
}
?>

 

in the bcc coloum I want to add more than one email address so I tried "kellyg@******.co.uk"; "rob@******.co.uk";

 

and it did not work is the a simple answer?

Link to comment
https://forums.phpfreaks.com/topic/38499-email-shopping-cart/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.