Update INewsletterTemplate.cs

Add applicationUrl
This commit is contained in:
Avi 2023-11-07 17:12:23 -06:00 committed by GitHub
commit e2971f821e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,6 +2,6 @@
{ {
public interface INewsletterTemplate 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);
} }
} }