示例#1
0
 public CreateAccountNotification(SmtpOptions options, TemplateHelperBase templateHelper) : base(options, templateHelper)
 {
 }
示例#2
0
 public PasswordResetNotification(SmtpOptions options, TemplateHelperBase templateHelper, PasswordReset pwdReset) : base(options, templateHelper) => _pwdReset = pwdReset;
示例#3
0
 public NotificationBase(SmtpOptions options, TemplateHelperBase templateHelper)
 {
     _options        = options;
     _templateHelper = templateHelper;
 }
示例#4
0
 public NotificationService(TemplateHelperBase templateHelper, IOptions <SmtpOptions> options)
 {
     _options        = options.Value;
     _templateHelper = templateHelper;
 }