WC_Email_Customer_Invoice::get_default_subject( bool $paid = false )
Get email subject.
Description Description
Parameters Parameters
- $paid
-
(Optional) Whether the order has been paid or not.
Default value: false
Return Return
(string)
Source Source
File: includes/emails/class-wc-email-customer-invoice.php
public function get_default_subject( $paid = false ) { if ( $paid ) { return __( 'Invoice for order #{order_number} on {site_title}', 'woocommerce' ); } else { return __( 'Your latest {site_title} invoice', 'woocommerce' ); } }
Changelog Changelog
Version | Description |
---|---|
3.1.0 | Introduced. |