fazzfarrell Posted February 14, 2007 Share Posted February 14, 2007 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 More sharing options...
Jessica Posted February 14, 2007 Share Posted February 14, 2007 $IMXMAIL->bcc = "<kellyg@******.co.uk>, <rob@******.co.uk>"; Link to comment https://forums.phpfreaks.com/topic/38499-email-shopping-cart/#findComment-184689 Share on other sites More sharing options...
fazzfarrell Posted February 14, 2007 Author Share Posted February 14, 2007 thanks tried that before andthe page hung, silly me forgot ';' at the end of the line! thanks a lot! Link to comment https://forums.phpfreaks.com/topic/38499-email-shopping-cart/#findComment-184694 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.