Ejemplo n.º 1
0
 /**
  * Request AWS To disable DKIM
  *
  * @return bool
  */
 public function disableDkim()
 {
     try {
         $this->sesClient->setIdentityDkimEnabled(['DkimEnabled' => false, 'Identity' => $this->identity->getIdentity()]);
         return true;
     } catch (\Exception $e) {
         return false;
     }
 }