Automattic\WooCommerce\Admin\Notes\MerchantEmailNotifications
NotificationEmail::get_content_html() public WC 1.0
Get content html.
{} Это метод класса: NotificationEmail{}
Хуков нет.
Возвращает
Строку.
Использование
$NotificationEmail = new NotificationEmail(); $NotificationEmail->get_content_html();
Код NotificationEmail::get_content_html() NotificationEmail::get content html WC 5.0.0
public function get_content_html() {
return wc_get_template_html(
$this->get_template_filename( 'html' ),
array(
'email_actions' => $this->get_actions(),
'email_content' => $this->get_note_content(),
'email_heading' => $this->get_heading(),
'email_image' => $this->get_image(),
'sent_to_admin' => true,
'plain_text' => false,
'email' => $this,
'opened_tracking_url' => $this->opened_tracking_url,
'trigger_note_action_url' => $this->trigger_note_action_url,
),
'',
$this->template_base
);
}