Added more Descriptive Column titles and additonal cell spacing to contact templates

This commit is contained in:
johnnyq 2022-05-13 15:17:23 -04:00
parent 5c1eafede8
commit 4f56f2efb3
1 changed files with 10 additions and 1 deletions

View File

@ -4503,7 +4503,16 @@ if(isset($_GET['download_client_contacts_csv_template'])){
$f = fopen('php://memory', 'w');
//set column headers
$fields = array('Name', 'Title', 'Department', 'Email', 'Phone', 'Ext', 'Mobile', 'Location');
$fields = array(
'Full Name ',
'Job Title ',
'Department Name ',
'Email Address ',
'Office Phone ',
'Office Extension ',
'Mobile Phone ',
'Office Location '
);
fputcsv($f, $fields, $delimiter);
//move back to beginning of file