响应式HTML电子邮件签名

时间:2016-01-14 19:02:56

标签: html email media-queries signature

我正在尝试制作HTML响应式电子邮件签名。在所有浏览器(Chrome,Safari,Firefox等)中,它运行良好。但是当我发送它时,我的Apple Mail(OSX和iOS)不会让它响应(不会缩放):(并且它们确实支持它。

这是我的代码,有人可以帮忙吗?

<!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 http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Responsive HTML Email Signature</title>
    <style type="text/css">

        /*Global Styles*/
        body { background: #eeeeee; margin: 0; padding: 0; min-width: 100%!important; font-family: 'Proxima Nova','Open Sans','Gill Sans MT','Gill Sans',Corbel,Arial,sans-serif; font-size: 11px; color: #000000; line-height: 17px;}
        a { text-decoration: none; color: #000000;}
        img {height: auto;}
        .content { margin-top: 20px; margin-bottom: 20px; }

        /*Media Queries*/
        @media only screen and (max-width: 751px){
            body { font-size:15px !important; line-height: 21px;}
            .columns{width:100% !important;}
            .columncontainer{display:block !important; width:100% !important;}
            .listitem, .role {font-size: 16px;}
        }
        @media only screen and (min-width: 651px) {
            .content {width: 650px !important;}
        }

    </style>
</head>
<body style="background: aqua;">

    <table width="100%" border="0" cellpadding="0" cellspacing="0">
        <tr>
            <td>
            <!--[if (gte mso 9)|(IE)]>
              <table width="540" align="center" cellpadding="0" cellspacing="0" border="0">
                <tr>
                  <td>
            <![endif]-->

                <!--Content Wrapper-->
                <table class="content" bgcolor="#ffffff" align="center" cellpadding="0" cellspacing="0" border="0">

                    <!--Signature-->
                    <tr>
                        <td style="padding: 0px 0px 0px 0px; border-top: 1px solid #e8e8e8; border-bottom: 1px solid #e8e8e8;">
                            <table border="0" cellpadding="0" cellspacing="0" width="650" class="columns">
                                <tr valign="top">
                                    <td width="60%" class="columncontainer" style="display:block; width:390px; border-right: 1px solid black; margin-top: 30px">
                                        <table border="0" cellpadding="0" cellspacing="0" width="100%">
                                            <tr>
                                                <td valign="top" style="padding: 30px 30px 30px 30px;"><a href="https://www.studioneonlight.com/"><img width="100%" src="https://www.studioneonlight.com/logo.png" /></a></td>
                                            </tr>
                                        </table>
                                    </td>
                                    <td width="40%" class="columncontainer">
                                        <table border="0" cellpadding="0" cellspacing="0" width="100%">
                                            <tr>
                                                <td valign="top" style="padding: 30px 30px 30px 30px;">
                                                    <table border="0" cellspacing="0" cellpadding="0">
                                                        <tr style="font-weight: bold;">
                                                            <td width="100%" colspan="2">
                                                                Address
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td style="line-height: 10px;">
                                                                &nbsp;
                                                            </td>
                                                        </tr>
                                                            <tr>
                                                                <td width="40%" style="font-weight: bold;">telefoon</td>
                                                                <td width="60%"><a href="tel:00000">phone number</a></td>
                                                            </tr>
                                                            <tr>
                                                                <td width="40%" style="font-weight: bold;">e-mail</td>
                                                                <td width="60%"><a href="mailto:timo@studioneonlight.com">timo@studioneonlight.com</a></td>
                                                            </tr>
                                                            <tr>
                                                                <td width="40%" style="font-weight: bold;">website</td>
                                                                <td width="60%"><a href="https://www.studioneonlight.com">studioneonlight.com</a></td>
                                                            </tr>
                                                    </table>
                                                </td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                            </table>
                        </td>
                    </tr>

                    <!--Legal-->
                    <tr>
                        <td style="padding: 10px 30px 30px 30px;">
                            <table width="100%" border="0" cellspacing="0" cellpadding="0">
                                <tr>
                                    <td align="center" style="font-family: sans-serif; font-size: 13px; color: #ccc; padding: 20px 0 0 0;">
                                        WARNING: I cannot be help responsible for the contents of the message above, as apparently my cats have learned how to type.
                                    </td>
                                </tr>
                            </table>
                        </td>
                    </tr>

                </table>

                <!--[if (gte mso 9)|(IE)]>
                      </td>
                    </tr>
                  </table>
                <![endif]-->
            </td>
        </tr>
    </table>
</body>

1 个答案:

答案 0 :(得分:2)

这可能有所帮助,但根据我在Apple Mail中的理解,html页面不应该包含html,head或body标签。此签名页面应仅包含内联css和基本html元素,例如<div><span><img>等。也许这可能是邮件客户端无法在OS X和iOS上解释html签名的问题之一。

您可以使用的优秀代码示例和模板是A responsive html email signature template。这是一个GitHub项目,对如何使用它有很好的指导。希望这会帮助你。我可能会比较你所拥有的模板。原因是,要支持html签名跨浏览器和邮件应用程序,您需要确保处理每个邮件客户端和浏览器的所有边缘情况。另一个提示是你应该能够使用html / css代码来检测浏览器是否是safari并处理iOS / OS X边缘情况。看看Github项目,这应该可以帮到你。