Fixed: Allow "Pretty" From Address for Email

Fixes #5497
This commit is contained in:
Qstick 2021-01-06 23:11:15 -05:00
parent 88ec106ec6
commit f120b84c43
1 changed files with 1 additions and 1 deletions

View File

@ -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();