EMail attachment

Hi,
is it possible in Continua to attach files or reports to a notification-mail (e.g. attach log with error to build-failed-notification)? I didn’t saw any possibility on the templates-section.

Hi Rynardald,

This is not currently possible, but is on our to-do list. 

You can however add links to build artifacts in some build notification templates (Build Success, Build Failed, Build Fixed, Build Broken).
 
e.g.

<h3>Links to Test artifacts< /h3>
<ul>
{% for artifact in Artifacts %}
    {% if artifact.FileName contains 'Tests.xml' %}
        <li><a href="{{ artifact.DownloadUrl }}">{{ artifact.FileName }} (Size: {{ artifact.FileSize }}) < /a>< /li>
    {% endif %}
{% endfor %}
< /ul>