Separate email address and username for smtp

A username can now be set for SMTP. If not set, the send from address
will be used as before.
This commit is contained in:
Harvey Tindall
2020-10-11 22:32:51 +01:00
parent 5fd2e81fe4
commit 8672d7dc18
4 changed files with 27 additions and 4 deletions
+9
View File
@@ -530,6 +530,7 @@
},
"smtp": {
"order": [
"username",
"encryption",
"server",
"port",
@@ -539,6 +540,14 @@
"name": "SMTP (Email)",
"description": "SMTP Server connection settings."
},
"username": {
"name": "Username",
"required": false,
"requires_restart": false,
"type": "text",
"value": "",
"description": "Username for SMTP. Leave blank to user send from address as username."
},
"encryption": {
"name": "Encryption Method",
"required": false,