public ReachMailApiGateway(string apiKey)
        {
            Validate.Begin().IsNotNullOrEmpty(apiKey, "reachMail");

            reachMail = Reachmail.Api.Create(apiKey);
        }
示例#2
0
 public void Setup()
 {
     _reachmail = Api.Create(ConfigurationManager.AppSettings["Token"], allowSelfSignedCerts: true, timeout: 1200);
 }