crm-summit/app/Views/activities_detail.php

35 lines
904 B
PHP
Raw Normal View History

2024-04-24 13:20:52 +07:00
<h3>Activity Detail</h3>
<hr>
<?=$content;?>
<?php
$attachment = $attachment['attachment'];
$filelist = $attachment;
$file_array = explode (',', $filelist);
$i = 1;
foreach ($file_array as $value){
if($i == 1) {echo "<b>Attachment : </b><br/>";}
2025-08-20 12:50:24 +07:00
echo "<a href='".base_url()."upload/$value' target='_blank'>$value </a><br/>";
2024-04-24 13:20:52 +07:00
$i++;
}
2026-03-08 22:40:36 +07:00
$i = 1;
// foreach ($certificates as $value){
// if($i == 1) {echo "<b>Certificates : </b><br/>";}
// echo "<a href='".$value['file_url']."' target='_blank'>".$value['cert_name']."</a><br/>";
// $i++;
// }
2024-04-24 13:20:52 +07:00
echo "<hr/>";
foreach ($actsend_log as $data) {
$logdate = $data['logdate'];
$replyto = $data['replyto'];
$emailto = $data['emailto'];
$emailcc = $data['emailcc'];
$emailbcc = $data['emailbcc'];
echo "<p style='margin-bottom:10px;'><b>$logdate</b><br/>
Reply to : $replyto<br/>
To : $emailto<br/>
cc : $emailcc<br/>
bcc : $emailbcc<br/>
</p>";
}
?>