Correct as of v2.3.3
To change where the admin copy of the Return request is sent follow these instructions
Open
includes/languages/english/YOUR_TEMPLATE/returns.php
Then open
includes/modules/pages/returns/header_php.php
This adjusts what the customer sees, so if you leave this one unchanged the customer will see your default email address instead of your changed one.
find:
Code:
$send_to_email = EMAIL_FROM;
and change it to:
Code:
$send_to_email = EMAIL_RETURNS;
This one adjusts where the admin copy email is sent to
then find:
Code:
zen_mail(STORE_OWNER, EMAIL_FROM, EMAIL_SUBJECT, $text_message, $name, $email_address, $html_msg, 'contact_us');
and change it to:
Code:
zen_mail(STORE_OWNER, EMAIL_RETURNS, EMAIL_SUBJECT, $text_message, $name, $email_address, $html_msg, 'contact_us');
Enjoy
Bookmarks