
Originally Posted by
stevenlee
Hello Clyde,
I'm sorry I should have been more specific, I wanted to know if there is a way to have it sent to a different email address so it can be sent directly to the rma guy's email
thank you,
Steve
You'd have to modify two files in order to achieve this.
includes/languages/english/YOUR_TEMPLATE/returns.php
add a new define statement
define('RMA_EMAIL', '[email protected]')
open includes/modules/pages/returns/header_php.php
find the following line of code (around line 83)
PHP Code:
zen_mail(STORE_OWNER, EMAIL_FROM, EMAIL_SUBJECT, $text_message, $name, $email_address, $html_msg, 'Returns');
and replace the it with the following:
PHP Code:
zen_mail(STORE_OWNER, RMA_EMAIL, EMAIL_SUBJECT, $text_message, $name, $email_address, $html_msg, 'Returns');
Bookmarks