Hi,
The "product page request form" use the email "contact_request".
The email address used for the recipient is the HikaShop option "From Address" (Main> Emails).
If you want to override the recipient address, there are several possibilities.
- Using an HikaShop plugin with the trigger "onBeforeMailSend"
- Using the "contact_request - preload" email to sent the reciepient. But it require to modify the HikaShop core.
To modify the HikaShop core, you have to edit the controller product ("components/com_hikashop/controllers/product.php") and replace
$mail->reply_email = $element->email;
$mail->dst_email = array($config->get('from_email'));
[code]By[code]
$mail->reply_email = $element->email;
if(empty($mail->dst_email))
$mail->dst_email = array($config->get('from_email'));
So it will allow you to edit the "$mail->dst_email" in the preload.
Regards,