【问题标题】:Sending a HTML E-mail through outlook通过 Outlook 发送 HTML 电子邮件
【发布时间】:2014-05-30 10:22:25
【问题描述】:

所以我准备了一个简单的接受/拒绝电子邮件:

<!DOCTYPE html>
<html>
<head>
    <title>Accept or Reject</title>
</head>
<body>

    <table align="center">  
        <tr>
            <td>
                <form method="post" action="mailto:EMAILADD?subject=I%20Accept&body=I%20would%20like%20to%0D%0AAccept">
                    <input type="submit" value="Accept"> 
                    </input> 
                </form>
            </td>
            <td>
                <form method="post" action="mailto:EMAILADD?subject=I%20Reject&body=I%20would%20like%20to%0D%0AReject">
                    <input type="submit" value="Reject"> 
                    </input> 
                </form>
            </td>
        </tr>
    </table>

</body>
</html>

我遇到的问题是让它在 Outlook 中发送。 我去发送一封新电子邮件>附加文件>(查找html文件)>插入为文本。

看起来不错,但是当我发送电子邮件时是空白的。

第一次这样做会很感激帮助,在此先感谢。

【问题讨论】:

  • 认为 Outlook 从 html 电子邮件中剥离了表单功能。不确定,但我怀疑这是某种安全措施。
  • 提供指向浏览器页面的链接可能会更好/更安全/更简单/更广泛支持...或使用内置功能...office.microsoft.com/en-001/outlook-help/…

标签: html email outlook


【解决方案1】:

两个 cmets 都是正确的 - 添加一些额外的内容来验证这是问题所在。类似的东西

<h2>Testing Email</h2>

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2011-09-14
    • 2012-03-03
    • 2013-11-23
    • 2020-05-30
    • 2022-10-23
    • 2013-10-28
    • 2021-12-18
    • 2016-05-11
    相关资源
    最近更新 更多