---
name: 'Email Notification Template'
description: 'A description of what this template does.'
fromName: '{{ craft.app.projectConfig.get("email.fromName") }}'
fromEmail: '{{ craft.app.projectConfig.get("email.fromEmail") }}'
replyTo: '{email}'
cc: null
bcc: null
subject: 'New submission from your {{ form.name }} form'
includeAttachments: true
---
<p>The following submission came in on {{ dateCreated|date('l, F j, Y \\a\\t g:ia') }}.</p>

<ul>
    {% for field in form.fields %}
        <li>{{ field.label }}: {{ field.valueAsString }}</li>
    {% endfor %}
</ul>
