메시지 바닥글 변경 - OctobercMS -

5543 단어 OctoberCMS
개요

위 이미지와 같이 초기 상태에서
이'옥토버 CMS'부분을 내 이름으로 바꾸고 싶다.
메서드
데이터베이스를 만지작거리다.
설치 시 생성된
시스템 mail layouts 테이블의 "content}"
그중의 일부를 바꾸어 바꿀 수 있다.
이번 터치의 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.
이렇게
결실

좋은 웹페이지 즐겨찾기