| 
<?php
include('emailexport.class.php');
 $emailExport = new emailExport();
 
 $emails = array();
 $emails[] = array('firstName' => 'Igor', 'middleName' => 'Herson', 'lastName' => 'Aquino', 'email1' => '[email protected]', 'email2' => '[email protected]', 'email3' => '[email protected]');
 $emails[] = array('firstName' => 'Jenner', 'middleName' => 'Portela', 'lastName' => 'Chagas', 'email1' => '[email protected]', 'email2' => '[email protected]');
 
 $emailExport->getList($emails);
 $emailExport->exportVcard();
 $emailExport->exportCsv();
 ?>
 <p align="right"><span><a href="export.vcf">Exportar para vCard</a></span> - <span><a href="export.csv">Exportar para CVS</a></span></p>
 |