Exemplo n.º 1
0
 public PasswordResetMail(
     IMailContentCreator contentCreator,
     IMailer mailer,
     AppConfiguration configuration
     )
 {
     this.contentCreator = contentCreator;
     this.mailer         = mailer;
     this.mailSubjects   = configuration.MailSubjects;
 }
 public ContactFormMailConfirmation(
     IMailContentCreator contentCreator,
     IMailer mailer,
     AppConfiguration configuration
     )
 {
     this.contentCreator = contentCreator;
     this.mailer         = mailer;
     this.mailSubjects   = configuration.MailSubjects;
 }
Exemplo n.º 3
0
 public ActivationMail(IMailContentCreator contentCreator, IMailer mailer, AppConfiguration configuration)
 {
     this.contentCreator = contentCreator;
     this.mailer         = mailer;
     this.mailSubjects   = configuration.MailSubjects;
 }