Page 1 of 1

Sending copy of order to a specific mail

Posted: Tue Jul 19, 2011 10:12 pm
by solojuve1897
Hello,

Like the subject explains. I want to send a copy of the order to a specific mail yet I dont want it to be sent to the store owner.

The store owner should only get mails from the contact-page.

Basically I have two e-mail accounts. One is info@domain.com and the other is order@domain.com.
Everything regarding contacts I want going to the info@domain.com and the copy of orders I want sent to order@domain.com.

Right now I get the copy of order both to info@domain.com and order@domain.com, which I dont want.

Is there a possible fix?

Regards,

Re: Sending copy of order to a specific mail

Posted: Tue Jul 19, 2011 10:51 pm
by uksitebuilder
|
|
|
V

Re: Sending copy of order to a specific mail

Posted: Tue Jul 19, 2011 11:15 pm
by Qphoria
You can change the one spot that the new orders go to

Both 1.4.x and 1.5.x:
1. EDIT: catalog/model/checkout/order.php

2. FIND:

Code: Select all

$mail->setTo($this->config->get('config_email'));
3. REPLACE WITH:

Code: Select all

$mail->setTo('order@blah.com');

Re: Sending copy of order to a specific mail

Posted: Tue Jul 19, 2011 11:33 pm
by solojuve1897
Thanks!

Very appreciated :)