Postmark\PostmarkAdminClient::rotateDKIMForDomain PHP 메소드

rotateDKIMForDomain() 공개 메소드

Rotate DKIM keys associated with the Domain. This key must be added to your DNS records. Including DKIM is not required, but is recommended. For more information on DKIM and its purpose, see http://www.dkim.org/
public rotateDKIMForDomain ( integer $id ) : Postmark\Models\DynamicResponseModel
$id integer The ID for the Domain for which we wish to get an updated DKIM configuration.
리턴 Postmark\Models\DynamicResponseModel
    function rotateDKIMForDomain($id)
    {
        return new DynamicResponseModel($this->processRestRequest('POST', "/domains/{$id}/rotatedkim"));
    }