无法使用力度模板

时间:2018-04-06 11:28:28

标签: templates velocity

我正在使用力度模板发送电子邮件。 我可以使用静态文本作为邮件正文发送邮件。 但我无法像在邮件正文中添加颜色样式表那样设置邮件正文的样式。

因此,请您建议我如何实现。

这是我收到的示例vm文件,因为它是邮件正文,即它没有样式。

<!DOCTYPE html>
<html>
    <head>
        <title>User Information</title>
        <style>
            body{
                 font-family: verdana;
            }

            table {
                width: 500px;

            }

            table, th, td {
                border: 1px solid black;
                padding: 2px;
            }

            th{
                background-color: #00439A;
                color : #FFFFFF;
            }

            tr.odd{
                background-color: #CFCFCF;
            }

            tr.even{
                background-color: #1076F5;
            }
        </style>
    </head>
    <body>
    <h1>User Information</h1>   
    <table>
        <tr>
            <th>ID</th>
            <th>First Name</th>
            <th>Last Name</th>
            <th>Age</th>
            <th>Gender</th>
        </tr> 
        </table>
    </body>
</html>

0 个答案:

没有答案