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