Hello, we've a Magento 1.9 shop where we've included e-Mail routing that has different e-Mail reicevers based on the country. For example
germany@test.de ( main Shop)
france@test.de
swiss@test.de
So when client A buys at the france shop the an e-Mail will be dispatched to france@test.de The problem is that is a BCC so there will be also sen an e-mail to germany@test.de
We've programmed that inside the queueNewOrderEmail function in Order.php and check zip of the client to determine where to send the e-Mail.
Do you know how to dynamically replace the e-Mail receiver?
Currently this is our routing snippets.
Thank for you help!