namespace LMS.Common.Templates
{
public class EmailTemplateService()
{
///
/// 注册邮件模板
///
public const string RegisterHtmlTemplates = """
LMS Registration Code
Hi there,
Your code is {RegisterCode}
The code is valid for 10 minutes, if it is not you, please ignore it.
""";
///
/// 替换模板的占位符
///
///
///
///
public static string ReplaceTemplate(string template, Dictionary parameters)
{
// 替换占位符
foreach (var param in parameters)
{
template = template.Replace($"{{{param.Key}}}", param.Value);
}
return template;
}
}
}