Kindly am trying to customize the email which is sent automatically from WooCommerce to the admin once a product becomes out of stock. I checked the WooCommerce related setting and it's not in the email tap.
Is there a way to customize the title, body and from?
You can customize WooCommerce out of stock notification email as follows:
1). Change or add recipient -
woocommerce_email_recipient_no_stock
filter hook:Code example: Change stock email notifications recipient in WooCommerce
2). Change email subject -
woocommerce_email_subject_no_stock
filter hook:The original subject code is (located on
WC_Emails
Classno_stock()
method):Code examples: Customizing email subject with dynamic data in Woocommerce
3). Change email content -
woocommerce_email_content_no_stock
filter hook:The original content code is (located on
WC_Emails
Classno_stock()
method):So you can change it using something like:
Code goes in functions.php file of the active child theme (or active theme). It should works.
4). Customizing From:
See: Change sender name and email address for specific WooCommerce email notifications
It's not possible to target no stock email notification.