diff --git a/lib/shared/addon/components/notifier/modal-new-edit/template.hbs b/lib/shared/addon/components/notifier/modal-new-edit/template.hbs index ec0d97aeb..f93594c56 100644 --- a/lib/shared/addon/components/notifier/modal-new-edit/template.hbs +++ b/lib/shared/addon/components/notifier/modal-new-edit/template.hbs @@ -63,6 +63,16 @@
{{t 'notifierPage.smtp.server'}}
+
+
{{t 'notifierPage.smtp.sender'}}{{field-required}}
+ {{input + type="text" + autocomplete="off" + classNames="form-control" + value=model.smtpConfig.sender + }} +
+
{{t 'notifierPage.smtp.host'}}{{field-required}}
@@ -72,7 +82,6 @@ placeholder=(t 'notifierPage.smtp.hostPlaceholder') }}
-
{{t 'notifierPage.smtp.port'}}{{field-required}}
{{input classNames="form-control" value=model.smtpConfig.port placeholder=(t 'notifierPage.smtp.portPlaceholder')}} @@ -83,7 +92,7 @@
-
{{t 'notifierPage.smtp.userName'}}{{field-required}}
+
{{t 'notifierPage.smtp.userName'}}
{{input classNames="form-control" autocomplete="off" @@ -92,7 +101,7 @@ }}
-
{{t 'notifierPage.smtp.password'}}{{field-required}}
+
{{t 'notifierPage.smtp.password'}}
{{input type="password" autocomplete="off" diff --git a/translations/en-us.yaml b/translations/en-us.yaml index 5986736f9..a9ea5f665 100644 --- a/translations/en-us.yaml +++ b/translations/en-us.yaml @@ -1345,6 +1345,7 @@ notifierPage: hostPlaceholder: e.g. 192.168.1.121 port: Port portPlaceholder: e.g. 465 + sender: Sender userName: Username userNamePlaceholder: e.g. John password: Password