Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
cmx.emailtemplate.sharedocument 

Mandatory variables in email template (Must be available):

Code Block
${link} - Secure Link for Document 

${content} - Optional : provides the changing par of url other than the hostname. For example: https://live.contractexperience.com/{content} , content will substitute the dynamic varying part of the url.

Example:

Code Block
<table>
<tr>
<td>
Hello,
</td>
</tr>
<tr>
<td>
This email notification can be customized as per your requirements.
</td>
</tr>
<tr>
<td>
Here is the shared document:
</td>
</tr>
<tr>
<td>
${link}
</td>
</tr>
<tr>
<td>
CMx Team
</td>
</tr>
</table>

...