Try your search with a different keyword or use * as a wildcard.
@model NewsletterSubscriptionSearchModel
@using Nop.Services.Stores
@using Nop.Services.Localization
@inject IStoreService storeService
@{
//page title
ViewBag.PageTitle = T("Admin.Promotions.newsLetterSubscriptions").Text;
//active menu item (system name)
NopHtml.SetActiveMenuItemSystemName("Newsletter subscriptions");
}
@{
const string hideSearchBlockAttributeName = "NewsletterSubscriptionPage.HideSearchBlock";
var hideSearchBlock = await genericAttributeService.GetAttributeAsync(await workContext.GetCurrentCustomerAsync(), hideSearchBlockAttributeName);
}
@*import emails form*@