403Webshell
Server IP : 103.234.187.230  /  Your IP : 216.73.216.216
Web Server : Apache
System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
User : apache ( 48)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/html/b2bzend/application/views/emails/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/b2bzend/application/views/emails/VisaDocumentMail.phtml
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Query Detail</title>
</head>

    <body style="">
    <table width="90%" border="0" align="center" cellpadding="0" cellspacing="0" style=" border: dashed 1px #ccc; font-size:14px; font-family: Roboto, sans-serif;">
        <tr>
            <td colspan="2" align="left" style=" padding:18px 40px;vertical-align: middle;">
                <!--<img src="public/img/<?php // echo $this->logo;
                                            ?>" />-->
            </td>
        </tr>
        <tr>
            <td colspan="2" style=" padding:5px 40px;vertical-align: middle;font-size:14px;">
                Dear <?php echo $this->UserName;?>, <br>
                <br>
                This is to inform you that the corrected documents have been successfully uploaded to the portal. Below are the details of the application:    
                    
            </td>
        </tr>
        <tr>
            <td width="33%" style="font-size:14px; padding:5px 40px;vertical-align: middle;font-weight: bold;">Proposal ID : </td>
            <td width="66%" style="font-size:14px; padding:5px 40px;vertical-align: middle;"><?php echo $this->TPSysId;?></td>
        </tr>
        <tr>
            <td width="33%" style="font-size:14px; padding:5px 40px;vertical-align: middle;font-weight: bold;">Date of Submission : </td>
            <td width="66%" style="font-size:14px; padding:5px 40px;vertical-align: middle;"><?php echo $this->BookingDate;?></td>
        </tr>
        <tr>
            <td width="33%" style="font-size:14px; padding:5px 40px;vertical-align: middle;font-weight: bold;">Date of Travel : </td>
            <td width="66%" style="font-size:14px; padding:5px 40px;vertical-align: middle;"><?php echo $this->StartDate;?></td>
        </tr>
        <?php if($this->IsB2BProposal == 1){ ?>
        <tr>
            <td width="33%" style="font-size:14px; padding:5px 40px;vertical-align: middle;font-weight: bold;">Agent Company Name : </td>
            <td width="66%" style="font-size:14px; padding:5px 40px;vertical-align: middle;"><?php echo $this->B2bAgencyName;?></td>
        </tr>
        <?php } ?>
        
        <tr>
            <td width="33%" style="font-size:14px; padding:5px 40px;vertical-align: middle;font-weight: bold;">Contact Number : </td>
            <td width="66%" style="font-size:14px; padding:5px 40px;vertical-align: middle;"><?php echo $this->LeadPaxContacts;?></td>
        </tr>
        <tr>
            <td width="33%" style="font-size:14px; padding:5px 40px;vertical-align: middle;font-weight: bold;">Lead Pax Name : </td>
            <td width="66%" style="font-size:14px; padding:5px 40px;vertical-align: middle;"><?php echo $this->LeadPaxName;?></td>
        </tr>
        <tr>
            <td width="33%" style="font-size:14px; padding:5px 40px;vertical-align: middle;font-weight: bold;">Country : </td>
            <td width="66%" style="font-size:14px; padding:5px 40px;vertical-align: middle;"><?php echo $this->DestinationPlaces;?></td>
        </tr>
        <tr>
            <td width="33%" style="font-size:14px; padding:5px 40px;vertical-align: middle;font-weight: bold;">Visa Title : </td>
            <td width="66%" style="font-size:14px; padding:5px 40px;vertical-align: middle;"><?php echo $this->VisaTitle;?></td>
        </tr>
        <tr>
            <td width="33%" style="font-size:14px; padding:5px 40px;vertical-align: middle;font-weight: bold;">No of Pax : </td>
            <td width="66%" style="font-size:14px; padding:5px 40px;vertical-align: middle;"><?php echo $this->MinPax;?></td>
        </tr>
            <tr><td colspan="2">&nbsp;</td></tr>
        <tr>
            <td colspan="2" style="font-size:14px; padding:5px 40px;vertical-align: middle;font-weight: bold;">List of Uploaded Documents : </td> 
        </tr>
        <tr>
            <td colspan="2" style="font-size:14px; padding:5px 40px;vertical-align: middle;">
                <table width="70%" style=" border: 1px solid #ccc;" cellpadding="8" cellspacing="0" border="1">
                    <tr style="">
                        <td style="font-size:14px;font-weight: bold;">Sr. No.</td>
                        <td style="font-size:14px;font-weight: bold;">Pax Name</td>
                        <td style="font-size:14px;font-weight: bold;">Document Name</td>
                    </tr>
                    <?php 
                    $ARR_SALUTION = unserialize(ARR_SALUTION);
                    foreach($this->GetTravelPlanUploadedDocuments as $key => $value){ 
                        $CustomerSalutation = (isset($value['CustomerSalutation']) && $value['CustomerSalutation'] > 0) ? trim($ARR_SALUTION[$value['CustomerSalutation']]) : '';
                        $CustomerFirstName = (isset($value['CustomerFirstName']) && trim($value['CustomerFirstName']) != '') ? trim($value['CustomerFirstName']) : '';
                        $CustomerLastName = (isset($value['CustomerLastName']) && trim($value['CustomerLastName']) != '') ? trim($value['CustomerLastName']) : '';
                        
                        $MemberSalutation = (isset($value['MemberSalutation']) && $value['MemberSalutation'] > 0) ? trim($ARR_SALUTION[$value['MemberSalutation']]) : '';
                        $MemberFirstName = (isset($value['MemberFirstName']) && trim($value['MemberFirstName']) != '') ? trim($value['MemberFirstName']) : '';
                        $MemberLastName = (isset($value['MemberLastName']) && trim($value['MemberLastName']) != '') ? trim($value['MemberLastName']) : '';
                        if($value['MemberSysId'] > 0){
                            $CustomerSalutation = $MemberSalutation;
                            $CustomerFirstName = $MemberFirstName;
                            $CustomerLastName = $MemberLastName;   
                        } 
                        $border = ($key > 0) ? 'border-top: 1px solid #ccc;' : '';
                        ?>
                        <tr>
                            <td style="font-size:14px;<?php //echo $border;?>"><?php echo $key + 1?></td>
                            <td style="font-size:14px;<?php //echo $border;?>"><?php echo $CustomerSalutation.' '.$CustomerFirstName.' '.$CustomerLastName;?></td>
                            <td style="font-size:14px;<?php echo $border;?>"><?php echo $value['DocName'];?></td>
                        </tr>
                    <?php } ?>
                </table>
            
            
            </td> 
        </tr>
            <tr><td colspan="2">&nbsp;</td></tr>
        <tr>
            <td colspan="2" style="font-size:14px; padding:5px 40px;vertical-align: middle;">Please review the uploaded documents at your earliest convenience to ensure that they meet the necessary requirements and let me know if any further action is needed. </td> 
        </tr>
        <tr>
            <td colspan="2" style="font-size:14px; padding:5px 40px;vertical-align: middle;">Thank you for your cooperation and assistance in this matter.</td> 
        </tr>
        <tr>
            <td colspan="2" style="font-size:14px; padding:5px 40px;vertical-align: middle;">Best regards,</td> 
        </tr>
        <tr>
            <td colspan="2" style="font-size:14px; padding:5px 40px;vertical-align: middle;"><?php echo $this->ContactName;?></td> 
        </tr>
        <tr>
            <td colspan="2" style="font-size:14px; padding:5px 40px;vertical-align: middle;"><?php echo $this->ContactInfo;?></td> 
        </tr>
        <tr>
            <td colspan="2" style="font-size:14px; padding:5px 40px;vertical-align: middle;"><?php echo $this->DisplayName;?></td> 
        </tr>
         
          
         
    </table>
</body>

</html>

Youez - 2016 - github.com/yon3zu
LinuXploit