You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$html = preg_replace('~<(style|script)[^>]*>.*?</\1>~is', '', $html);
// ...// Does it make sense to remove spaces from the end of lines?$text = preg_replace("~^[ \t]+|[ \t]+$~m", '', trim($text));
Originally posted by @Tigrov in yiisoft/mailer-view#2 (comment)