@using System.Linq @using PlexRequests.Core.Models @using PlexRequests.UI.Helpers @inherits Nancy.ViewEngines.Razor.NancyRazorViewBase @Html.Partial("_Sidebar") @{ int port; if (Model.EmailPort == 0) { port = 25; } else { port = Model.EmailPort; } }
Email Notifications
@if (Model.Enabled) { } else { }
@if (Model.EnableUserEmailNotifications) { } else { }
@if (Model.Authentication) { } else { }
Please note that if user notifications is enabled, the email will get sent with the SMTP set-up below.
@*
@for (var i = 0; i < Model.Message.Count; i++) {
}
*@