用于新邮件和重播邮件的Exchange Online签名

时间:2012-07-19 09:00:46

标签: exchange-server

我尝试在Exchange Online-line中创建签名。此签名有两个触发器:

  1. 为新电子邮件添加签名:

    <html xmlns="http://www.w3.org/1999/xhtml">
      <head>
        <style type="text/css">
          h1 {font-size: 14pt; font-family: "Segoe UI", Arial,sans-serif; color:#F79646;margin-bottom:0;font-weight:normal;}  
          h2 {font-size: 11pt; font-family: "Segoe UI", Arial,sans-serif;margin-bottom:1em;margin-top:0;font-weight:normal;}  
          .email {font-size: 10pt; font-family: "Segoe UI", Arial, sans-serif; color:blue;text-decoration:underline;}  
          p {font-size: 10pt; font-family: "Segoe UI", Arial, sans-serif;}  
          .nazwafirmy {font-size:12pt; font-family: 'Segoe UI', Arial, sans-serif; color:#F79646;}  
          a {text-decoration:underline; color:blue;}  
          .danefirmy {color:#A6A6A6;}  
          .danefirmy b {color:gray; font-weight:normal;}  
          .infoprawne {font-size:8pt; color:#A6A6A6;}  
        </style>  
      </head>
      <body>
        <p>Pozdrawiam,</p>
        <h1>%%displayname%%</h1>
        <h2>%%title%%</h2>
        <p class="email">%%email%%</p>
        <p>%%mobilenumber%%</p>
        <br />
        <p class="nazwafirmy">Company</p>
        <p>ul.<br />tel. / fax:<br /></p>
        <p><a href="http://www.link.pl/">www.link.pl</a></p>
        <br />
        <p class="danefirmy"><b>NIP: </b><br />
          <b>Some information</b><br /><br />
        </p>
        <p class="infoprawne">Some information<br />
          <br />
        </p>
      </body>
    </html>
    
  2. 第二个触发器 - 在重播消息后添加:

    <html xmlns="http://www.w3.org/1999/xhtml"  >
      <head>
        <style type="text/css">
        p {font-size: 10pt; font-family: "Segoe UI", Arial, sans-serif;}
        </style>
      </head>
      <body>
        <p>Pozdrawiam,</p>
        <p>%%displayname%%</p>
        <p>Supremo Sp. z o.o.</p>
      </body>
    </html>  
    
  3. 我尝试使用Exchange中的规则添加此签名(如此):
    http://help.outlook.com/en-us/140/Ff852816.aspx#FallbackAction

    http://www.axon-it.com/2012/02/22/office-365-email-footers/

    http://www.axon-it.com/2012/01/23/office-365-email-disclaimer/

    甚至

    http://community.office365.com/en-us/forums/158/p/48901/171956.aspx#171956

    但没有任何结果。

    我想做那样的事情:

    1. 创建新电子邮件
    2. 发送新电子邮件 - 已激活FIRST触发器(添加签名)
    3. 我收到第一封电子邮件的答案
    4. 当我发送重播电子邮件时,SECOND触发器已激活(仅添加重播签名)
    5. 我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

我创建了另外两条规则: 1.发送新电子邮件时激活 - 除了主题开始时:RE,FWD,ODP。 2.当主题电子邮件是RE,FED,ODP时激活。

现在,一切正常:)