You can access your site's messages from your templates via craft.support.messages
{% set tickets = craft.support.messages.all() %}
{% for message in messages %}
{{ message.content }}
{% endfor %}
craft.support.messages
supports the following parameters:
A User Model can be passed to get messages for that user only.
Get messages for that author only.
Get messages for that ticket only.