Comments 2Terje started the conversationJanuary 10, 2025 at 9:16amHi.I use request a quote from B2b KingWhen I receive a quote, it gets sent to the site main admin mail address.Is there a way for me to set a different mail address as the receiver of new quote mails? 2,330WebWizards repliedJanuary 11, 2025 at 9:20amHello Terje, To change the receiving email to a different address, other than the admin one, please add the following PHP code snippet to your site: add_filter('b2bking_recipient_new_message', function($recipient, $conversationid){ return '[email protected]'; }, 10, 2); add_filter('b2bking_recipient_new_message_quote', function($recipient, $conversationid){ return '[email protected]'; }, 10, 2); Replace the email address there with your custom one. Kind regards, Stefan1 Like Sign in to reply ...
Hi.
I use request a quote from B2b King
When I receive a quote, it gets sent to the site main admin mail address.
Is there a way for me to set a different mail address as the receiver of new quote mails?
Hello Terje,
To change the receiving email to a different address, other than the admin one, please add the following PHP code snippet to your site:
Replace the email address there with your custom one.
Kind regards,
Stefan