Beispiel #1
0
 public function __construct(\MageWonder\Smtp\Helper\Data $helper)
 {
     $this->_apiKey = $helper->getApiKey();
     $this->_provider = $helper->getProvider();
     if ($this->_provider == Provider::PROVIDER_SENDGRID) {
         if (!empty($this->_apiKey)) {
             $this->_api = new \SendGrid($this->_apiKey);
         }
     }
 }