| +-----------------------------------------------------------------------+ $Id: $ */ // get contacts for this user $CONTACTS->set_page(1); $CONTACTS->set_pagesize(999); $result = $CONTACTS->list_records(); // send downlaod headers send_nocacheing_headers(); header('Content-Type: text/x-vcard; charset=UTF-8'); header('Content-Disposition: attachment; filename="rcube_contacts.vcf"'); while ($result && ($row = $result->next())) { $vcard = new rcube_vcard($row['vcard']); $vcard->set('displayname', $row['name']); $vcard->set('firstname', $row['firstname']); $vcard->set('surname', $row['surname']); $vcard->set('email', $row['email']); echo $vcard->export(); } exit; ?>