public function repperApiStapTwee($email)
 {
     // Pak relatieID
     $clients = new \SoapClient('https://api.repper.nl/soap/1.1/repperservice.svc', array('soap_version' => SOAP_1_2));
     $actionsHeader[] = new \SoapHeader('http://www.w3.org/2005/08/addressing', 'Action', 'http://api.repper.nl/soap/1.1/getRelationByEmailAddress');
     $actionsHeader[] = new \SoapHeader('http://www.w3.org/2005/08/addressing', 'To', 'https://api.repper.nl/soap/1.1/RepperService.svc', 1);
     $clients->__setSoapHeaders($actionsHeader);
     $apikey = '1a4d8cadcee34acb88c5ff7c68d11a65';
     $emailAddress = $email;
     $result = $clients->GetRelationByEmailAddress(array('apikey' => $apikey, 'emailAddress' => $emailAddress));
     $xml = simplexml_load_string($result->GetRelationByEmailAddressResult->payload->any);
     $relationID = (string) $xml->attributes()->id;
     header('Content-type: text/xml');
     // var_dump($xml->asXML());
     $this->repperApiStapDrie($relationID);
 }