@using System.Linq @using Ombi.UI.Helpers @inherits Nancy.ViewEngines.Razor.NancyRazorViewBase @Html.Partial("Shared/Partial/_Sidebar") @{ int port; if (Model.EmailPort == 0) { port = 25; } else { port = Model.EmailPort; } }
Email Notifications
@if (Model.Enabled) { } else { }
@if (Model.Authentication) { } else { }
The sender is who the email will be sent from, this can be for any email including user notification emails (if that is enabled).
The recipient email is used for emails going to the administrator.
@*
@for (var i = 0; i < Model.Message.Count; i++) {
}
*@