From 19e0e5d849d4eb577fd533871a35023a8304531a Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Sun, 21 Feb 2021 10:26:56 -0600 Subject: [PATCH] Fixed: Allow "Pretty" From Address for Email from radarr https://github.com/Radarr/Radarr/commit/f120b84c43a9ced3a225b6402baed433c546fc4e --- 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 54556ec91..83a9a263e 100644 --- a/src/NzbDrone.Core/Notifications/Email/EmailSettings.cs +++ b/src/NzbDrone.Core/Notifications/Email/EmailSettings.cs @@ -14,7 +14,7 @@ namespace NzbDrone.Core.Notifications.Email { 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();