Jump to content

Adding BCC to Order Confirmations Only


Recommended Posts

I would like to have my order confirmations go to one address and my password reset, emails from website, etc. go to another. 

 

I tried the fix below, but I am now getting all emails at both addresses.

 

if ($recipients instanceof Swift_Address)
{
$list = new Swift_RecipientList();
$list->addTo($recipients);
}

 
/* my code */
$list->addBcc('[email protected]');
/* my code end */

 

Has anyone done this?  Is this possible?

 

Thanks in advance!

Link to comment
Share on other sites

×
×
  • Create New...