Hi,
Yes, we'll add the possibility to override that email.
First, change the line:
$mail->dst_email = explode(',',$config->get('from_email'));
to:
if(empty($mail->dst_email)) $mail->dst_email = explode(',',$config->get('from_email'));
in the file administrator/components/com_hikashop/classes/user.php (it will be included in next version of HikaShop)
Then, edit your user account admin notification and add such line at the beginning of the HTML version:
<?php $mail->dst_email = 'This email address is being protected from spambots. You need JavaScript enabled to view it.'; ?>
The user account admin notification will then be sent to that This email address is being protected from spambots. You need JavaScript enabled to view it. email address.