public EmailService(IOptions <EmailServiceSettings> emailServiceOptions) { _emailServiceOptions = emailServiceOptions.Value; }
public SendGridEmailService(IOptions <EmailServiceSettings> emailServiceOptions, ILogger <EmailService> logger) { _emailServiceOptions = emailServiceOptions.Value; _logger = logger; }