Postmark\PostmarkClient::bypassInboundMessageRules PHP Метод

bypassInboundMessageRules() публичный Метод

Allow an inbound message to be processed, even though the filtering rules would normally prevent it from being processed.
public bypassInboundMessageRules ( integer $id ) : Postmark\Models\DynamicResponseModel
$id integer The ID for a message that we wish to unblock.
Результат Postmark\Models\DynamicResponseModel
    function bypassInboundMessageRules($id)
    {
        return new DynamicResponseModel($this->processRestRequest('PUT', "/messages/inbound/{$id}/bypass"));
    }