0
0

More than 3 years have passed since last update.

メールのフッター文章を変える-OctoberCMS-

Posted at

概要

2020-04-03 (2).png
初期状態では上記画像のようになっている。
この「October CMS」部分を自分の名前にしたい。

方法

データベースをいじる。
OctoberCMSインストール時に生成された
「system_mail_layouts」テーブルの「content_html」。
この中の一部を変更することで変えられる。

今回触るのはidが「1」、nameが「Default layout」の中身を触る。

html

以下全文。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
    <style type="text/css" media="screen">
        {{ brandCss|raw }}
        {{ css|raw }}
    </style>

    <table class="wrapper layout-default" width="100%" cellpadding="0" cellspacing="0">

        <!-- Header -->
        {% partial 'header' body %}
            {{ subject|raw }}
        {% endpartial %}

        <tr>
            <td align="center">
                <table class="content" width="100%" cellpadding="0" cellspacing="0">
                    <!-- Email Body -->
                    <tr>
                        <td class="body" width="100%" cellpadding="0" cellspacing="0">
                            <table class="inner-body" align="center" width="570" cellpadding="0" cellspacing="0">
                                <!-- Body content -->
                                <tr>
                                    <td class="content-cell">
                                        {{ content|raw }}
                                    </td>
                                </tr>
                            </table>
                        </td>
                    </tr>
                </table>
            </td>
        </tr>

        <!-- Footer -->
        {% partial 'footer' body %}
            &copy; {{ "now"|date("Y") }} {{ appName }}. All rights reserved.
        {% endpartial %}

    </table>

</body>
</html>

</table>の直前部分を触る。

&copy; {{ "now"|date("Y") }} {{ appName }}. All rights reserved.

これを、

&copy; {{ "now"|date("Y") }} Orito. All rights reserved.

こう。

結果

2020-04-06.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0