Smtp server
{{ form_label(settingsForm.smtpServer) }}
{{ form_widget(settingsForm.smtpServer) }}
{{ form_label(settingsForm.smtpPort) }}
{{ form_widget(settingsForm.smtpPort, {'type': 'number'}) }}
{{ form_label(settingsForm.smtpSecurity) }}
{{ form_widget(settingsForm.smtpSecurity) }}
{{ form_label(settingsForm.smtpLogin) }}
{{ form_widget(settingsForm.smtpLogin) }}
{{ form_label(settingsForm.smtpPassword) }}
{{ form_widget(settingsForm.smtpPassword) }}
{{ form_label(settingsForm.senderEmail) }}
{{ form_widget(settingsForm.senderEmail) }}
{% if(settingsForm.sendEmailTestNotification is defined) %}
{{ form_widget(settingsForm.sendEmailTestNotification) }}
{% endif %}
Slack server
{{ form_label(settingsForm.slackToken) }}
{{ form_widget(settingsForm.slackToken) }}
{{ form_label(settingsForm.slackChannel) }}
{{ form_widget(settingsForm.slackChannel) }}
{% if(settingsForm.sendSlackTestNotification is defined) %}
{{ form_widget(settingsForm.sendSlackTestNotification) }}
{% endif %}