bounceId = $bounceId; } /** * Execute the job. * * @return void */ public function handle() { if (! config('services.postmark')) { return false; } $postmark = new PostmarkClient(config('services.postmark')); $response = $postmark->activateBounce($this->bounceId); } }