Skip to content
Snippets Groups Projects
Commit f32efb60 authored by Niko Ehrenfeuchter's avatar Niko Ehrenfeuchter :keyboard:
Browse files

Use host alias in subject of low-space-email instead of hostname.

parent d5c1c9b3
No related branches found
No related tags found
No related merge requests found
...@@ -127,7 +127,7 @@ namespace ATxService ...@@ -127,7 +127,7 @@ namespace ATxService
}; };
try { try {
var body = LoadMailTemplate("DiskSpace-Low.txt", substitutions); var body = LoadMailTemplate("DiskSpace-Low.txt", substitutions);
var subject = $"Low Disk Space On {Environment.MachineName}"; var subject = $"Low Disk Space On {_config.HostAlias}";
SendEmail(_config.AdminEmailAdress, subject, body); SendEmail(_config.AdminEmailAdress, subject, body);
} }
catch (Exception ex) { catch (Exception ex) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment