Ejemplo n.º 1
0
        public static IHtmlContent InvoiceDispersedOrganization <T>(this IBasicEmail email, T model)
            where T : OrganizationTransferEmail, new()
        {
            var message = $"Your organization : " + model.OrganizationName + " just got paid! Project : " + model.ProjectName +
                          " with Invoice No : " + model.Number + " & Transfer Amount : $" + model.Amount.ToString("N2");

            return(TemplateHelpers.SingleParagraph(message));
        }