How we can invoke a process model through email?

Hi 

How we can invoke a process model through email?

Thanks in Advance

  Discussion posts and replies are publicly visible

Parents
  • To setup the link in the email:
    Create an HTML template with link tag.
    Create an expression to for generating url for the process model by passing process id. Use urlwithparameters() for url for task or process model.
    Use the template in the send email node
    Use the expression for link by passing process model id

    This will generate link in the email. Once the link is clicked it will direct to the target process.

    I used for Record link in the emal as follows

    Inside the HTML Template
    ...
    Click <a href="###link###" target="_blank">here</a> to view the record.<br><br>
    ...

    Expression that forms the record url which will be mapped to above link field in html template
    if(ri!recordId=0,"",
    urlforrecord(cons!UAGM_EXTERNAL_RECORD,ri!recordId))
Reply
  • To setup the link in the email:
    Create an HTML template with link tag.
    Create an expression to for generating url for the process model by passing process id. Use urlwithparameters() for url for task or process model.
    Use the template in the send email node
    Use the expression for link by passing process model id

    This will generate link in the email. Once the link is clicked it will direct to the target process.

    I used for Record link in the emal as follows

    Inside the HTML Template
    ...
    Click <a href="###link###" target="_blank">here</a> to view the record.<br><br>
    ...

    Expression that forms the record url which will be mapped to above link field in html template
    if(ri!recordId=0,"",
    urlforrecord(cons!UAGM_EXTERNAL_RECORD,ri!recordId))
Children
No Data