WC_Email_Customer_Invoice::get_default_additional_content
Default content to show below main email content.
Method of the class: WC_Email_Customer_Invoice{}
No Hooks.
Returns
String.
Usage
$WC_Email_Customer_Invoice = new WC_Email_Customer_Invoice(); $WC_Email_Customer_Invoice->get_default_additional_content();
Changelog
| Since 3.7.0 | Introduced. |
WC_Email_Customer_Invoice::get_default_additional_content() WC Email Customer Invoice::get default additional content code WC 10.7.0
public function get_default_additional_content() {
return $this->email_improvements_enabled
? __( 'Thanks again! If you need any help with your order, please contact us at {store_email}.', 'woocommerce' )
: __( 'Thanks for using {site_url}!', 'woocommerce' );
}