コード例 #1
0
    public function run()
    {
        $css = 'a, a:hover {
    text-decoration: none;
    color: #0862A2;
    font-weight: bold;
}

td, tr, th, table {
    padding: 0px;
    margin: 0px;
}

p {
    margin: 10px 0;
}';
        $html = '<html>
    <head>
        <style type="text/css" media="screen">
            {{ css|raw }}
        </style>
    </head>
    <body>
        {{ content|raw }}
    </body>
</html>';
        $text = '{{ content|raw }}';
        MailLayout::create(['is_locked' => false, 'name' => 'MRC default', 'code' => 'mrc_default', 'content_html' => $html, 'content_css' => $css, 'content_text' => $text]);
    }
コード例 #2
0
    public function run()
    {
        $css = 'a, a:hover {
    text-decoration: none;
    color: #0862A2;
    font-weight: bold;
}

td, tr, th, table {
    padding: 0px;
    margin: 0px;
}

p {
    margin: 10px 0;
}';
        $html = '<html>
    <head>
        <style type="text/css" media="screen">
            {{ css|raw }}
        </style>
    </head>
    <body>
        {{ content|raw }}
    </body>
</html>';
        $text = '{{ content|raw }}';
        MailLayout::create(['is_locked' => true, 'name' => 'Default', 'code' => 'default', 'content_html' => $html, 'content_css' => $css, 'content_text' => $text]);
        $html = '<html>
    <head>
        <style type="text/css" media="screen">
            {{ css|raw }}
        </style>
    </head>
    <body>
        {{ content|raw }}
        <hr />
        <p>This is an automatic message. Please do not reply to it.</p>
    </body>
</html>';
        $text = '{{ content|raw }}


---
This is an automatic message. Please do not reply to it.
';
        MailLayout::create(['is_locked' => true, 'name' => 'System', 'code' => 'system', 'content_html' => $html, 'content_css' => $css, 'content_text' => $text]);
    }