Commit 124c7e84 by Klimov Paul

Mail layout charset specification fixed

parent f24347a1
......@@ -3,14 +3,15 @@ use yii\helpers\Html;
/**
* @var \yii\web\View $this
* @var \yii\mail\BaseMessage $content
* @var \yii\mail\MessageInterface $message
* @var string $content
*/
?>
<?php $this->beginPage() ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?= Yii::$app->charset ?>" />
<meta http-equiv="Content-Type" content="text/html; charset=<?= $message->getCharset() ?>" />
<title><?= Html::encode($this->title) ?></title>
<?php $this->head() ?>
</head>
......
......@@ -3,14 +3,15 @@ use yii\helpers\Html;
/**
* @var \yii\web\View $this
* @var \yii\mail\BaseMessage $content
* @var \yii\mail\MessageInterface $message
* @var string $content
*/
?>
<?php $this->beginPage() ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?= Yii::$app->charset ?>" />
<meta http-equiv="Content-Type" content="text/html; charset=<?= $message->getCharset() ?>" />
<title><?= Html::encode($this->title) ?></title>
<?php $this->head() ?>
</head>
......
......@@ -150,7 +150,7 @@ use yii\helpers\Html;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?= $message->charset ?>" />
<meta http-equiv="Content-Type" content="text/html; charset=<?= $message->getCharset() ?>" />
<style type="text/css">
.heading {...}
.list {...}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment