public function Emogrifier::removeUnprocessableHTMLTag in HTML Mail 5
Same name and namespace in other branches
- 6 emogrifier/emogrifier.php \Emogrifier::removeUnprocessableHTMLTag()
File
- emogrifier/
emogrifier.php, line 63 - CSS to Inline Converter Class
Class
Code
public function removeUnprocessableHTMLTag($tag) {
if (($key = array_search($tag, $this->unprocessableHTMLTags)) !== false) {
unset($this->unprocessableHTMLTags[$key]);
}
}