1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

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

View File

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