0

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

  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>  
    

我尝试使用 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. 当我发送重播电子邮件时,第二个触发器已激活(仅添加重播签名)

我怎么能这样做?

4

1 回答 1

0

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

现在,一切正常:)

于 2012-11-14T09:42:14.137 回答