Change The Reply To Email For Notifications Sent To Vendors

Hello,

I have noticed that emails getting sent to vendors about orders have the reply to email as the customer address. How can we change this so that the reply to email for emails received by vendors to the our marketplace email ? I dont want vendors to be able to reply to customers.

Thanks,

Kyle

app/schemas/notifications/events.php

try to change

    $order_event['receivers'][UserTypes::VENDOR][MailTransport::getId()] = MailMessageSchema::create([
        'area'            => 'A',
        'from'            => 'default_company_orders_department',
        'to'              => 'company_orders_department',
        'reply_to'        => DataValue::create('order_info.email'),

with

    $order_event['receivers'][UserTypes::VENDOR][MailTransport::getId()] = MailMessageSchema::create([
        'area'            => 'A',
        'from'            => 'default_company_orders_department',
        'to'              => 'company_orders_department',
        'reply_to'        => 'default_company_orders_department',

Then clear cache

(!) Not tested

P.S. It is possible to extend this schema with addon