using FluentValidation; using Nop.Services.Localization; using Nop.Web.Areas.Admin.Models.Messages; using Nop.Web.Framework.Validators; namespace Nop.Web.Areas.Admin.Validators.Messages; public partial class TestMessageTemplateValidator : BaseNopValidator { public TestMessageTemplateValidator(ILocalizationService localizationService) { RuleFor(x => x.SendTo).NotEmpty(); RuleFor(x => x.SendTo) .IsEmailAddress() .WithMessageAwait(localizationService.GetResourceAsync("Admin.Common.WrongEmail")); } }