We would like the emails from this form to be forwarded to an address other than the store vendor. We have seen suggestions in the forum to use email forwarding to get the emails to this separate department, but Email forwarding is not an option because we do not want the store emails to go to this email account, just the "Ask a question" emails.
Does anyone have a solution for this? J2.5.x and VM2.0.26x
The mails are sent from components/com_virtuemart/helpers/shopfunctionsf.php
renderMail() function goes to sendVmMail() - the view is passed there so you could detect and use another email address in that function
I figured out a way to do this with an override of the productdetails default.php - replace the existing ask a question code with
<a class="ask-a-question" href="mailto:myemail@mysite.com?subject=Question re <?php echo $this->product->product_name ?> ">Ask a question about this product</a>
works!!!