Jinja for getting comments?

Hello
Im trying to display all comments in my email notification, used the following code but nothing is showing.

{% if comments %}
<div>
    <strong><h3>Comments</h3></strong>
{% for comment in comments %}
<div class="comment">
  <div class="author">{{ comment.by }}</div>
  <div class="text">{{ comment.comment }}</div>
</div>
{% endfor %}
</div>
{% endif %}

Any help is appreciated.

Still looking for help on this.