我需要在电子邮件消息(Outlook)上创建一个按钮来复制现有消息,并允许我将其转发给下一个人。我需要这个来跟踪邮件。该流需要看起来像这样:
请求者发送一封带有转发按钮的电子邮件——>研究者将通过点击按钮——>审稿人将通过点击按钮将电子邮件发送回请求者。
每次按钮都需要包含允许这种跟踪的代码-例如,添加"DOER"one_answers";REVIEWER",
我的问题(因为我不是程序员)是我知道如何用HTML创建消息,我知道如何在这样的消息中插入一个简单的按钮。我不知道怎么做,是把这样的HTML电子邮件代码到这个按钮代码。很不幸,我总是失败。
我有标准的邮件正文:
<p style="color:black;font-size:17px;font-family:calibri;">
<style> table, th, td {border: 1px solid black; border-collapse: collapse;}
</style>
Hi <b>John,</b> <br /> <br /> Please review price for:<br /><br/>
<table style="width:100%">
<tr>
<th>Country</th>
<th>XXCode</th>
<th>XXLevel</th>
<th>XXTitle</th>
<th>XXFamily</th>
<th>XXCut</th>
<th>XXMatch</th>
<th>XXGrade</th>
<th>XXXMatch</th>
<th>XXXGrade</th>
</tr>
<tr>
<td rowspan ="16">BRAZIL</td>
</tr>
<tr>
<td>10000XXX</td>
<td>B</td>
<td>Logistics</td>
<td>Supply</td>
<td>General</td>
<td>ASCXXX</td>
<td>7 | 8</td>
<td>SCNXXXXX</td>
<td>43 | 44 | 45 | 46</td>
</tr>
<tr>
</table><br /><br /> The deadline for this task is:
<span style="background-color:yellow">26-8-2021, 10:16</span> <br /><br />
After the task is done- please send a message to <a href=>@Anna, Jolen</a> for review.<br /><br />Thank you,<br /></p></p>
按钮:
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center" style="border-radius: 5px; background-color: #733658;">
<a href="mailto:anna.jolen@company.com?CC=jola.zilen@company.com&subject=FW (&cell A520&) DOER& body=<html><body><b>blablabla</b></body></html>" target="_blank" style="font-size: 18px; font-family: Helvetica, Arial, sans-serif; color: #ffffff; font-weight: bold; text-decoration: none;border-radius: 5px; padding: 12px 18px; border: 1px solid #733658; display: inline-block;">DOER'S RESPONSE ↪</a>
</td>
</tr>
</table>
```
Many thanks,AM
Outlook不支持表单控件,也不允许在消息主体上运行脚本。你可以考虑为Outlook开发一个插件。它可以是COM插件(VSTO)或基于web的插件,以支持多个平台。