<small id='AlyvF'></small><noframes id='AlyvF'>

      <tfoot id='AlyvF'></tfoot>
      <i id='AlyvF'><tr id='AlyvF'><dt id='AlyvF'><q id='AlyvF'><span id='AlyvF'><b id='AlyvF'><form id='AlyvF'><ins id='AlyvF'></ins><ul id='AlyvF'></ul><sub id='AlyvF'></sub></form><legend id='AlyvF'></legend><bdo id='AlyvF'><pre id='AlyvF'><center id='AlyvF'></center></pre></bdo></b><th id='AlyvF'></th></span></q></dt></tr></i><div id='AlyvF'><tfoot id='AlyvF'></tfoot><dl id='AlyvF'><fieldset id='AlyvF'></fieldset></dl></div>

      1. <legend id='AlyvF'><style id='AlyvF'><dir id='AlyvF'><q id='AlyvF'></q></dir></style></legend>
        • <bdo id='AlyvF'></bdo><ul id='AlyvF'></ul>

        HTML 格式的电子邮件根本不显示在 Gmail 中,但在其他邮件客户端中

        HTML formatted email not showing up at all in Gmail but is in other mail clients(HTML 格式的电子邮件根本不显示在 Gmail 中,但在其他邮件客户端中)
      2. <legend id='C7IRx'><style id='C7IRx'><dir id='C7IRx'><q id='C7IRx'></q></dir></style></legend>
        <tfoot id='C7IRx'></tfoot>

                <i id='C7IRx'><tr id='C7IRx'><dt id='C7IRx'><q id='C7IRx'><span id='C7IRx'><b id='C7IRx'><form id='C7IRx'><ins id='C7IRx'></ins><ul id='C7IRx'></ul><sub id='C7IRx'></sub></form><legend id='C7IRx'></legend><bdo id='C7IRx'><pre id='C7IRx'><center id='C7IRx'></center></pre></bdo></b><th id='C7IRx'></th></span></q></dt></tr></i><div id='C7IRx'><tfoot id='C7IRx'></tfoot><dl id='C7IRx'><fieldset id='C7IRx'></fieldset></dl></div>
                  <tbody id='C7IRx'></tbody>
                  <bdo id='C7IRx'></bdo><ul id='C7IRx'></ul>
                • <small id='C7IRx'></small><noframes id='C7IRx'>

                  本文介绍了HTML 格式的电子邮件根本不显示在 Gmail 中,但在其他邮件客户端中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我目前正在从 PHP 的 mail() 函数发送 html 格式的电子邮件,并检查它们只是为了确保它们显示为 HTML(除了格式化,我很清楚客户端的格式会有所不同(可能很大)给客户).它们在 Apple Mail 客户端和我的 iPhone 上显示为 HTML.但是,Gmail 完全拒绝将其显示为 HTML.我并不是说它的格式不正确,它只是没有使用它出现的 HTML.

                  I'm currently sending html formatted emails from PHP's mail() function and checking them simply to make sure they are showing up as HTML (formatting aside, I'm well aware that the formatting will vary (probably drastically) from client to client). They are displaying as HTML in the Apple Mail client as well as on my iPhone. However, Gmail simply refuses to display it as HTML as all. And by that I don't mean it is formatted incorrectly, it just simply isn't using HTML it appears.

                  奇怪的部分是正在加载来自标签的 img,但仅此而已……是不是我主要使用 div 进行布局,而这对于 Gmail 或其他东西(与表格)来说太新了?

                  The weird part is that an img from a tag is being loaded, but that's about it... is it that I'm mostly using divs for layout and that's too new for Gmail or something (vs tables)?

                  就 CSS 和其他方面而言,查看原始源代码会显示以下内容:

                  As far as CSS and what not goes, viewing the raw source shows the following:

                  <html><head><style>body { background-color: #F2F2F2; font-family: Arial; color: #5C5C5C; font-size: 11pt; } a { color: #46AAFF; text-decoration: none; } #container { width: 750px; margin-right: auto; margin-left: auto; } #header { float: right; padding: 3px; height: 30px; } #header a { color: #666666; margin-right: 10px; } #mainBody { padding: 20px; background-color: #FFF; border: 1px solid #DADADA; border-radius: 3px; } #imageArea { border-top: solid #E8E8E8 1px; margin: 15px; } #singleImageArea { width: 250px; padding: 15px; } #singleImageArea p { float: right; line-height: 30px; width: 130px; margin-top: 20px; } #footer { padding: 10px; color: gray; } #footer p { text-shadow: 0px 2px #FFF; font-size: 10pt; } #footer a { color: #ADADAD; float: right; padding-left: 20px; padding-right: 20px; } #footer img { width: 35px; height: 23px; padding: 10px; float: left; } </style></head><body><div id="container"><div id="header"><a href="http://appname.local/login/">Login</a></d
                   iv><div style="clear: both;"></div><div id="mainBody"><h1>Hi Josh Holat!</h1>You've sent a request to <strong>reset</strong> your appname password. Just click the link below <em>(or copy and paste it into your browser)</em> and follow the instructions to set a new password. The link will expire in one hour.<br/><br/><a href="http://appname.local/sb/reset-password/?r=2768af61698fcde9c04f9449351575d6bfe6d720">http://appname.local/sb/reset-password/?r=2768af61698fcde9c04f9449351575d6bfe6d720</a><br/><br/>If you feel this request was submitted in error, don't worry; you can safely ignore this e-mail and your password will not be changed.<br/><br/>Much Love,<br/>Us</div><!-- #mainBody --><div id="footer"><img src="http://appname.local/images/email/footer_sb.png" /><p>&copy; 2011 appname, Inc. All Rights Reserved <a href="http://appname.local/sb/legal/">Legal</a><a href="http://appname.local/sb/contact/">Contact</a><a href="http://s
                   tagebloc.local/sb/developers/">Developers</a><a href="http://appname.local/sb/blog/">Blog</a></p></div><!-- #footer --></div><!-- #container --></body></html>
                  

                  还有:

                      Delivered-To: appname@gmail.com
                  Received: by 10.229.40.2 with SMTP id i2cs133298qce;
                          Sun, 28 Aug 2011 14:29:08 -0700 (PDT)
                  Received: by 10.42.152.199 with SMTP id j7mr4419937icw.417.1314566947950;
                          Sun, 28 Aug 2011 14:29:07 -0700 (PDT)
                  Return-Path: <_www@joshholat.local>
                  Received: from joshholat.local (arh2281.urh.uiuc.edu [130.126.70.193])
                          by mx.google.com with ESMTP id w3si6800550icz.109.2011.08.28.14.29.06;
                          Sun, 28 Aug 2011 14:29:06 -0700 (PDT)
                  Received-SPF: neutral (google.com: 130.126.70.193 is neither permitted nor denied by best guess record for domain of _www@joshholat.local) client-ip=130.126.70.193;
                  Authentication-Results: mx.google.com; spf=neutral (google.com: 130.126.70.193 is neither permitted nor denied by best guess record for domain of _www@joshholat.local) smtp.mail=_www@joshholat.local
                  Received: by joshholat.local (Postfix, from userid 70)
                      id 775063662E01; Sun, 28 Aug 2011 16:29:06 -0500 (CDT)
                  To: Josh Holat <appname@gmail.com>
                  Subject: Password Reset Request
                  X-PHP-Originating-Script: 501:Email.php
                  From: appname <noreply@appname.com>
                  Content-type: text/html
                  Message-Id: <20110828212906.775063662E01@joshholat.local>
                  Date: Sun, 28 Aug 2011 16:29:06 -0500 (CDT)
                  

                  我很困惑为什么第三方客户端会显示它很好但 Gmail 只是忽略它?

                  I'm confused as to why third party clients would show it fine but Gmail simply ignore it?

                  推荐答案

                  我正在更新我的答案,因为它有很多视图,并且有新工具可用.我将把我原来的答案留给后代.

                  I am updating my answer since it has quite a few views, and new tools are available. I am leaving my original answer for posterity.

                  编辑 * 2019 年 9 月 19 日

                  Edit * 9/19/19

                  您可以在此处通过电子邮件客户端找到 CSS 属性支持:https://www.caniemail.com/

                  You can find CSS property support by email client here: https://www.caniemail.com/

                  原答案:

                  Gmail 不支持 <style> 标签.您需要使用内联 css 才能使 gmail 正常工作.

                  Gmail does not support the <style> tag. You need to use inline css for gmail to work correctly.

                  这是一个参考列表.http://www.campaignmonitor.com/css/

                  这篇关于HTML 格式的电子邮件根本不显示在 Gmail 中,但在其他邮件客户端中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Move link image 5px up on hover(悬停时将链接图像向上移动 5px)
                  How do I inspect CSS pseudo classes with firebug?(如何使用 firebug 检查 CSS 伪类?)
                  Why doesn#39;t CSS hover work on table rows when the cells inside the rows have class names?(当行内的单元格具有类名时,为什么 CSS 悬停在表格行上不起作用?)
                  Hover image - display div over it(悬停图像 - 在其上显示 div)
                  How to apply a CSS class on hover to dynamically generated submit buttons?(如何在悬停时将 CSS 类应用于动态生成的提交按钮?)
                  Differences between CSS3 :hover and :focus?(CSS3 :hover 和 :focus 的区别?)
                  • <bdo id='PCDdY'></bdo><ul id='PCDdY'></ul>
                    <tfoot id='PCDdY'></tfoot>
                    <i id='PCDdY'><tr id='PCDdY'><dt id='PCDdY'><q id='PCDdY'><span id='PCDdY'><b id='PCDdY'><form id='PCDdY'><ins id='PCDdY'></ins><ul id='PCDdY'></ul><sub id='PCDdY'></sub></form><legend id='PCDdY'></legend><bdo id='PCDdY'><pre id='PCDdY'><center id='PCDdY'></center></pre></bdo></b><th id='PCDdY'></th></span></q></dt></tr></i><div id='PCDdY'><tfoot id='PCDdY'></tfoot><dl id='PCDdY'><fieldset id='PCDdY'></fieldset></dl></div>

                        <legend id='PCDdY'><style id='PCDdY'><dir id='PCDdY'><q id='PCDdY'></q></dir></style></legend>

                            <small id='PCDdY'></small><noframes id='PCDdY'>

                              <tbody id='PCDdY'></tbody>