Automattic\WooCommerce\Internal\Admin\Notes
EmailNotification::get_headers()
Get email headers.
Метод класса: EmailNotification{}
Хуки из метода
Возвращает
Строку
.
Использование
$EmailNotification = new EmailNotification(); $EmailNotification->get_headers();
Код EmailNotification::get_headers() EmailNotification::get headers WC 9.3.3
public function get_headers() { $header = 'Content-Type: ' . $this->get_content_type() . "\r\n"; return apply_filters( 'woocommerce_email_headers', $header, $this->id, $this->object, $this ); }