Skip to content

Commit

Permalink
Update EmailTemplate.cs
Browse files Browse the repository at this point in the history
Fix Typo
  • Loading branch information
dyuvaraaj committed Sep 17, 2024
1 parent 4efa05e commit 332c584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NotificationSystem/Template/EmailTemplate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public static string GetModeratorEmailBody(DateTime? timestamp)
return $"<html><head><style>{GetCSS()}</style></head><body>{GetModeratorEmailHtml(timestamp)}</body></html>";
}

public static string GeSubscriberEmailBody(List<JObject> messages)
public static string GetSubscriberEmailBody(List<JObject> messages)
{
return $"<html><head><style>{GetCSS()}</style></head><body>{GetSubscriberEmailHtml(messages)}</body></html>";
}
Expand Down

0 comments on commit 332c584

Please sign in to comment.