Exemplo n.º 1
0
 public SmtpClientPolicy(AmazonSESOptions options)
 {
     this.options = options;
 }
Exemplo n.º 2
0
        public AmazonSESEmailServer(IOptions <AmazonSESOptions> options)
        {
            clientPool = new DefaultObjectPoolProvider().Create(new SmtpClientPolicy(options.Value));

            this.options = options.Value;
        }
Exemplo n.º 3
0
 public AmazonSESEmailServer(IOptions <AmazonSESOptions> options)
     : base(options.Value)
 {
     this.options = options.Value;
 }