From e2971f821e236234bfbd604f4ffe0608247a1f19 Mon Sep 17 00:00:00 2001 From: Avi <357984+Unimatrix0@users.noreply.github.com> Date: Tue, 7 Nov 2023 17:12:23 -0600 Subject: [PATCH] Update INewsletterTemplate.cs Add applicationUrl --- src/Ombi.Notifications.Templates/INewsletterTemplate.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Ombi.Notifications.Templates/INewsletterTemplate.cs b/src/Ombi.Notifications.Templates/INewsletterTemplate.cs index 620cf39992..11d0e7431d 100644 --- a/src/Ombi.Notifications.Templates/INewsletterTemplate.cs +++ b/src/Ombi.Notifications.Templates/INewsletterTemplate.cs @@ -2,6 +2,6 @@ { public interface INewsletterTemplate { - string LoadTemplate(string subject, string intro, string tableHtml, string logo, string unsubscribeLink); + string LoadTemplate(string subject, string intro, string tableHtml, string logo, string unsubscribeLink, string applicationUrl); } -} \ No newline at end of file +}