How to display Items that are added in Material request in email alert message

How to display Items that are added in Material request in email alert message, I had created email alerts which trigger with change in workflow state which is working perfectly but I am not sure how can I display Items ( Item code ) in email message, Any help would be grateful.

Thanks

Parvez

@Parvez_Akhtar try add it in the body of the message

<ul>
  {% for item in doc.items %}
  <li>{{ item.item_code }}</li>
  {% endfor %}
</ul> 
2 Likes

@max_morais_dmm works great. Thanks