Send Rma Notification To Specific Email

I noticed that RMA request notifications are sent to the customer and the vendor. Is there an easy way to either add another email to be notified? Or send all notification to specific email instead of going to the vendors?

The reason we want to implement it this way is because the main store processes the returns, and not the vendors.

TIA!

using 4.3.2

app\addons\rma\func.php

replace:

if ($notify_vendor == true) {
            if (fn_allowed_for('MULTIVENDOR') && !empty($order_info['company_id'])) {
                $company_language = fn_get_company_language($order_info['company_id']);
            Mailer::sendMail(array(
                'to' => 'company_orders_department',

with

if ($notify_vendor == true) {
            if (fn_allowed_for('MULTIVENDOR') && !empty($order_info['company_id'])) {
                $company_language = fn_get_company_language($order_info['company_id']);
            Mailer::sendMail(array(
                'to' => 'your_email@domain.com',

Hope this will help

that worked. thanks!

You are welcome!