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? Quote Link to comment 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>"; Quote Link to comment 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! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.