如何用 nintex 电子邮件中的给定文本替换 "Item URL"

How to replace the "Item URL" with given text on a nintex email

您好,我一直在想办法替换通用引用 "Item URL" 显示文本,这样您就不会看到难看的 http:// link,我仍然想要 link 要正常运行,只是显示文本必须类似于 "Click here" 我的电子邮件代码如下(我知道代码很乱,但我会在它工作后清理它) :

<p style="font-size: 10pt; font-family: arial">Dear User,</p>
<p><span style="font-size: 10pt; font-family: arial">A new form has been created, please click on the link below to view it.</span><br style="font-size: 10pt; font-family: arial"/><br style="font-size: 10pt; font-family: arial"/><span id="NWRTEReference1"><a class="ms-rtestate-write" contenteditable="false" onclick="selectThis(this);" href="javascript:void(0);" reftext="%7BCommon%3AItemDisplayName%7D" link="false" style="text-decoration: underline; color: red"><span style="font-size: 10pt; font-family: arial">Item Display Name</span></a></span></p>
<p style="font-size: 10pt; font-family: arial">Regards,</p>
<p style="font-size: 10pt; font-family: arial"><strong>SharePoint Team</strong></p>

我知道怎么做了,"reftext"是link的显示名(我一开始就猜到了),然后你需要把"link"改成等于 true 并在这个叫做 "reflink" 之后添加一个新的位,这是你想要去的 link,在我的例子中(因为我在 nintex 上使用一个公共变量)它是 reflink="{Common:ItemUrl}"。希望这可以帮助任何陷入类似情况的人。