2012-08-07 28 views
0

我試圖在我的公司標準化簽名。運輸規則 - siganture任務

<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; margin-bottom:0;margin-top:0;} 
.nazwafirmy {font-size:12pt; font-family: 'Segoe UI', Arial, sans-serif; margin-bottom:0;margin-top:0; 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> 
<br /><br /> 
<p>Pozdrawiam,</p> 
<h1>%%displayname%%</h1> 
<h2>%%title%%</h2> 
<p class="email">%%email%%</p> 
<p>%%mobilenumber%%</p><br /> 
</p> 
</body> 
</html> 

一切工作正常,信息發送時添加的信息。但有一個問題:當我發送第一封電子郵件時,簽名就可以了 - 它位於電子郵件的底部。當有人向我發送消息並回復時,簽名將添加在此消息的底部 - 而不是發送給我的消息的上面。

例子:

<My answer.> 

----------------------------------------- 

<Message sent to me.> 
<Email Signature> 

----------------------------------------- 

<My signature answer.> 

我試圖用「前面加上」但這是結果:

<SIGNATURE> 
<Message> 

是否有任何解決方案來配置傳輸規則,這樣的簽名將被添加在我接聽電子郵件時,我回答的信息的上方,而不是下面的信息?

回答