Example #1
0
 public SendGridEmailSender(
     IOptions <SendGridOptions> options,
     ILogger <SendGridEmailSender> logger)
 {
     _logger  = logger;
     _options = options.Value;
 }
 public SendGridEmailSender(
     SendGridOptions options,
     ILogger <SendGridEmailSender> logger)
 {
     this.logger  = logger;
     this.options = options;
 }