Automattic\WooCommerce\Internal\StockNotifications\Emails
CustomerStockNotificationVerifyEmail::get_intro_content
Get email content.
Method of the class: CustomerStockNotificationVerifyEmail{}
Hooks from the method
Returns
String.
Usage
$CustomerStockNotificationVerifyEmail = new CustomerStockNotificationVerifyEmail(); $CustomerStockNotificationVerifyEmail->get_intro_content();
CustomerStockNotificationVerifyEmail::get_intro_content() CustomerStockNotificationVerifyEmail::get intro content code WC 10.3.6
public function get_intro_content() {
/**
* Allows modifying the email introduction content.
*
* @since 10.2.0
*
* @return string
*/
return apply_filters( 'woocommerce_email_stock_notification_intro_content', $this->format_string( $this->get_option_or_transient( 'intro_content', $this->get_default_intro_content() ) ), $this->object, $this );
}