You are here

public function Emogrifier::removeUnprocessableHTMLTag in HTML Mail 6

Same name and namespace in other branches
  1. 5 emogrifier/emogrifier.php \Emogrifier::removeUnprocessableHTMLTag()

File

emogrifier/emogrifier.php, line 63
CSS to Inline Converter Class

Class

Emogrifier

Code

public function removeUnprocessableHTMLTag($tag) {
  if (($key = array_search($tag, $this->unprocessableHTMLTags)) !== false) {
    unset($this->unprocessableHTMLTags[$key]);
  }
}