Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
124c7e84
Commit
124c7e84
authored
May 29, 2014
by
Klimov Paul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mail layout charset specification fixed
parent
f24347a1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
5 deletions
+7
-5
html.php
apps/advanced/common/mail/layouts/html.php
+3
-2
html.php
apps/basic/mail/layouts/html.php
+3
-2
tutorial-mailing.md
docs/guide/tutorial-mailing.md
+1
-1
No files found.
apps/advanced/common/mail/layouts/html.php
View file @
124c7e84
...
...
@@ -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>
...
...
apps/basic/mail/layouts/html.php
View file @
124c7e84
...
...
@@ -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>
...
...
docs/guide/tutorial-mailing.md
View file @
124c7e84
...
...
@@ -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
{
...
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment