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"));
    }