Change Email On Comment And Review's Order

Hi all,

i need to change my Comment and Review's Order email with email that not same with "Order department e-mail address" so i don't make any change for others.

can we do this?

i've already think to just change it from code on send email event but i don't know where should i change

Thanks

Hi all,
i need to change my Comment and Review's Order email with email that not same with "Order department e-mail address" so i don't make any change for others.
can we do this?
i've already think to just change it from code on send email event but i don't know where should i change

Thanks

Hi,

you can change this by going to the location : app/addons/discussion , from your cart root directory.
Open file func.php and find the Mailer::sendMail function for send to admin .
if u want to change the email find the code below and replace

'to' => 'default_company_orders_department',

with the code.

'to' => 'test@example.com',

app/addons/discussion/func.php

replace:

'to' => 'default_company_orders_department',

with:

'to' => 'new@email.com',

app/addons/discussion/func.php

replace:

'to' => 'default_company_orders_department',

with:

'to' => 'new@email.com',

Hi,

you can change this by going to the location : app/addons/discussion , from your cart root directory.
Open file func.php and find the Mailer::sendMail function for send to admin .
if u want to change the email find the code below and replace

'to' => 'default_company_orders_department',

with the code.

'to' => 'test@example.com',

Hi all,

thanks for your reply, i've tried this and looks like it works, Thanks :)