I am buying products with 20% discount and resell them for a normal price on my website. I want to make a extra email that has to be send to my own email address when a customer makes a order on my website.
My question: If it’s possible to make a new email that will send the normal payment details but also the payed price with the 20% discount on it.
This will help me a lot to buy the products with the discount price so I can send the email to the product owner. Right now I have to calculate the 20% of the normal price and send that to the product owner.
Does anyone have a solution or a tip?
Thanks for the help.
You could use a custom function hooked in
woocommerce_email_order_details
action hook, targeting "New Order" email notification (send to admin), where you will add those details this way:This will output something like:
Code goes in function.php file of your active child theme (or active theme).
Tested and works.