我正在尝试创建一个电子邮件模板,以便在他的案例结束时发送给用户。在这封电子邮件中会有一个按钮,如果用户单击它,案例将重新打开。有没有办法做到这一点?如果没有,是否有任何其他方法可以使用户能够通过电子邮件重新打开案例?谢谢
<messaging:emailTemplate recipientType="Contact"
relatedToType="Case"
subject="Olá! Seu caso {!relatedto.CaseNumber} foi resolvido." >
<messaging:htmlEmailBody >
<html>
<body>
<p>{!recipient.name},</p>
<p>Estamos passando pra dizer que o caso {!relatedto.CaseNumber}, aberto em {!relatedto.CreatedDate}, foi resolvido. Caso
não concorde com a solução, por favor clique no link abaixo. </p>
</body>
<button> Yes, I accept the solution </button>
<button> No, I would like to decline the solution </button>
</html>
<apex:includeScript/>
</messaging:htmlEmailBody>
</messaging:emailTemplate>