Hello,
Where can I find the confrmation email that the administrator of the webshop gets?
"{company}, {name} confirmed an order with a total of {amount} , his/her order number = {order number}"
Where is this located?
Tha mail template files are in components/com_virtuemart/views/invoice/tmpl/ - if you edit any be sure to use overrides.
Quote from: jenkinhill on April 26, 2017, 13:10:03 PM
Tha mail template files are in components/com_virtuemart/views/invoice/tmpl/ - if you edit any be sure to use overrides.
Yeah I know where the email is for the customer, but it seems to me (correct me if Im wrong) that there is no admin email template file available. I have searched extensively but I cannot seem to find it.
That is part of the language variable
components\com_virtuemart\language\en-GB\en-GB.com_virtuemart.ini
COM_VIRTUEMART_MAIL_VENDOR_CONTENT="Hello %1$s, <br /> %2$s confirmed an order with a total of %3$s, his/her order number = %4$s"
"{company}, {name} confirmed an order with a total of {amount} , his/her order number = {order number}"
This is used in the vendor template file:-
components\com_virtuemart\views\invoice\tmpl\mail_html_vendor.php
Yes, it is a combination of template files and the relevant language strings.
Yes, thanks it was in de vendor.html file in the invoice folder.