예제 #1
0
        public static IServiceCollection AddMandrillMailerService(this IServiceCollection services, string apiKey)
        {
            if (apiKey == null)
            {
                throw new ArgumentNullException(nameof(apiKey));
            }
            if (string.IsNullOrWhiteSpace(apiKey))
            {
                throw new ArgumentException("Value cannot be empty or whitespace only string.", nameof(apiKey));
            }

            var options = new MandrillMailerServiceOptions {
                ApiKey = apiKey
            };

            services.AddSingleton <IMailerService>(new MandrillMailerService(options));
            return(services);
        }
예제 #2
0
 public static IServiceCollection AddMandrillMailerService(this IServiceCollection services, MandrillMailerServiceOptions options)
 {
     services.AddSingleton <IMailerService>(new MandrillMailerService(options));
     return(services);
 }