From f120b84c43a9ced3a225b6402baed433c546fc4e Mon Sep 17 00:00:00 2001 From: Qstick Date: Wed, 6 Jan 2021 23:11:15 -0500 Subject: [PATCH] Fixed: Allow "Pretty" From Address for Email Fixes #5497 --- src/NzbDrone.Core/Notifications/Email/EmailSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Notifications/Email/EmailSettings.cs b/src/NzbDrone.Core/Notifications/Email/EmailSettings.cs index bf36f43d72..417d2341d5 100644 --- a/src/NzbDrone.Core/Notifications/Email/EmailSettings.cs +++ b/src/NzbDrone.Core/Notifications/Email/EmailSettings.cs @@ -14,7 +14,7 @@ public EmailSettingsValidator() { RuleFor(c => c.Server).NotEmpty(); RuleFor(c => c.Port).InclusiveBetween(1, 65535); - RuleFor(c => c.From).NotEmpty().EmailAddress(); + RuleFor(c => c.From).NotEmpty(); RuleForEach(c => c.To).EmailAddress(); RuleForEach(c => c.CC).EmailAddress(); RuleForEach(c => c.Bcc).EmailAddress();