ÿØÿà JFIF ` ` ÿþ
Server : Apache System : Linux ruga7-004.fmcity.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : tkt_travelbus ( 1137) PHP Version : 7.0.0p1 Disable Function : mysql_pconnect Directory : /tkt_travelbus/www/admin/reservation/ |
Upload File : |
<?php include "../include/top_iframe.html"; $data = to_send_mail_history_list($res_no); //if(devCookie()){ // p($data); // exit; //send_auto_manual_type //} ?> <div class="iframe ma0"> <div class="popbox"> <!-- 본문 --> <table width="100%" border="0" cellspacing="0" cellpadding="0" class="setting_write2"> <colgroup> <col width="5%" /> <col width="17%" /> <col width="17%" /> <col /> <col width="10%" /> <col width="5%" /> </colgroup> <thead> <th>No.</th> <th>발송(회사)</th> <th>수신(고객)</th> <th>내용</th> <th>전송일시<br>전송결과</th> <th>자동/수동</th> </thead> <tbody> <? $n=count($data); foreach($data as $v){ $v['message'] = nl2br($v['message']); if($v['admin_id']){ $mb_data = get_member($v['admin_id'], 'mb_nm'); $admin_nm = "<br>(".$mb_data['mb_nm'].")"; } ?> <tr> <td><?=$n?></td> <td> <?=$v['send_tel']?><?=$v['send_mail']?><?=$admin_nm;?> </td> <td><?=$v['recv_tel']?><?=$v['recv_mail']?></td> <td style="background-color:#fffae5; text-align:left;" <?if($type=="M") {?>style="cursor:pointer;" onclick="parent.parent.to_dialog.iframe('../reservation/mail_send.html?seq=<?=$v['seq']?>','메일 발송','1000','750',true,true,'yes');"<?}?>> <?=$v['message']?> </td> <td> <?=$v['ins_dt']?> <? if($v['api_result_msg']) {?> <br><br><span style="color:#CF2D36;"><?=$v['api_result_msg']?></span> <? } ?> </td> <td><?=(($v['send_auto_manual_type'] == 'A') ? '자동' : '수동')?></td> </tr> <? $n--; } ?> </tbody> </table> </div> </div> <!-- /본문 --> <? include "../include/footer_iframe.html"; ?>