MailPoet\EmailEditor

EmailCssInliner::render()publicWC 1.0

Method of the class: EmailCssInliner{}

No Hooks.

Return

null. Nothing (null).

Usage

$EmailCssInliner = new EmailCssInliner();
$EmailCssInliner->render(): string;

EmailCssInliner::render() code WC 9.8.1

public function render(): string {
  if (!isset($this->inliner)) {
    throw new \LogicException('You must call from_html before calling inline_css');
  }
  return $this->inliner->render();
}