0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 18.116.20.205


Current Path : /var/www/html/collportal/custom_src/
Upload File :
Current File : //var/www/html/collportal/custom_src/selectqpsetter.php

<?php
    function getSelectedQpSetters($aobj_context){
        $deggrp = $aobj_context->mobj_data["deggrp"];
        $board = $aobj_context->mobj_data["board"];
        $qpcode = $aobj_context->mobj_data["qpcode"];
        $type = $aobj_context->mobj_data["type"];

        if($board === "All"){
            $boardCond = "";
            $boardcon= "";
        }else{
            $boardCond = "and qp.fboard = '{$board}'";
            $boardcon = "and s.fboard = qp.fboard";
        }

        $query="select fyear, fexamtype from deggrp where fdeggrp = '{$deggrp}'";
        $row = $aobj_context->mobj_db->GetRow($query);
    
        $fyear = $row['fyear'];
        $fexamtype = $row['fexamtype'];
    
        $query = "select m.fteachcode, m.fteachname, m.fmobile, m.femail, qp.fyear, qp.fexamtype,
                  count(fset)as totalsets,
                  sum(if(ifnull(fqpfilepath, '')<>'',1,0)) as setsdone,
                  if(count(fset)='0', 0, sum(if(ifnull(fqpfilepath, '')='',1,0))) as setspending,
                  ifnull(qp.fappointed, 'F') as status, ifnull(qp.fnoqp,'1') as fnoqp, 
                  if(ifnull(flastdate,'') = '','', date_format(flastdate,'%d/%m/%Y')) as flastdate,
                  ifnull(qp.femailstatus,'') as emailstatus,
                  ifnull(qp.fmaxqn, '')as fmaxqn, 
                  ifnull(qp.fpretype, 'upload')as fpretype,
                  s.FQPPATREN,s.FQPSYLLABUS,s.FSCHPATTERN
                  from masteach m inner join qpseter qp on m.fteachcode=qp.fteachcode
                  inner join (select distinct fqpcode, fsubname,
                  ifnull(FQPPATREN, '')as FQPPATREN, 
                  ifnull(FQPSYLLABUS, '')as FQPSYLLABUS, 
                  ifnull(FSCHPATTERN, '')as FSCHPATTERN
                  from subject where ifnull(fqpcode,'') <> ''
                  and fqpcode = '{$qpcode}'
                  group by fqpcode) s on s.fqpcode = qp.fqpcode and s.fqpcode='{$qpcode}'
                  left join qpseterdet q 
                  on q.fqpcode = qp.fqpcode and q.fteachcode = qp.fteachcode and q.ftype = qp.ftype
                  
                  where qp.fqpcode='{$qpcode}' 
                  and qp.fqpcode in(select distinct s.fqpcode from subject s 
                  inner join degree d on s.fdegree = d.fdegree and s.fexamno = d.fexamno
                  where d.fdeggrp = '{$deggrp}')
                  and ifnull(qp.fstatus, 'F') = 'T'
                  and qp.ftype='{$type}' and qp.fyear='2222' and qp.fexamtype='2'
                  group by m.fteachcode";
        
                //   var_dump($query);die();
        $result = $aobj_context->mobj_db->GetAll($query);
        
        $query1 = "select fqpcode, count(distinct ifnull(fset,0))as available
                   from qpseterdet
                   where fqpcode='{$qpcode}'  and ifnull(fdeleted, '') <> 'T'
                   and ifnull(FFINALPAPER, '') = ''
				   and ifnull(fmodqpdate,'') <> ''
                   and ftype='{$type}'";
        $result1 = $aobj_context->mobj_db->GetRow($query1);
        
        if($result1){
            $arr['data'] = $result;
            $arr['avl'] = $result1;
            echo $aobj_context->mobj_output->ToJSONEnvelope($arr,0,"success"); 
        } else {
            $arr['msg'] = 'No data Found';
            echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"failure");
        }
    }

    function checkTemplateCode($aobj_context){
        $updtype = $aobj_context->mobj_data["updtype"];
        $type = $aobj_context->mobj_data["type"];
        $qpcode = $aobj_context->mobj_data["qpcode"];
        $data = $aobj_context->req_body;

        $query = "select ifnull(FQPPATREN,'') as FQPPATREN, 
                  ifnull(ftempcode,'') as ftempcode, 
                  ifnull(fonlineqp, '')as fonlineqp from subject 
                  where fqpcode = '{$qpcode}'";
        $res = $aobj_context->mobj_db->GetRow($query);

        if($updtype == "upload"){
            $msg = 'QP Pattren and Syllabus not found for this QP Code '.$qpcode;
        }else if($updtype == "online"){
            $msg = 'Template not found for this QP Code '.$qpcode;
        }

        if($res){
            echo $aobj_context->mobj_output->ToJSONEnvelope($res, 0, "success");
        }else{
            $arr['msg'] = $msg;
            echo $aobj_context->mobj_output->ToJSONEnvelope($arr, -1, "failure");
            return;
        }
    }

    function saveQpsetterDetails($aobj_context){
        // include("/var/www/html/collportal/src/sendGridMail.php");
        include("sendzohomail.php");
        include("/var/www/html/collportal/src/error_log.php");
        $aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);
        $univcode = $aobj_context->mobj_data["univcode"];
        $mob = $aobj_context->mobj_data["mob"];
        $user = $aobj_context->mobj_data["user"];
        $deggrp = $aobj_context->mobj_data["deggrp"];
        $board = $aobj_context->mobj_data["board"];
        $qpcode = $aobj_context->mobj_data["qpcode"];
        $collcode = $aobj_context->mobj_data["collcode"];
        $mobile = $aobj_context->mobj_data["mobile"];
        $type = $aobj_context->mobj_data["type"];
        $table = json_decode($aobj_context->mobj_data["data"], true);
        $onldate = date('d-m-Y');

        $qry_examdate = "select fexamdate from qpset_deggrp 
                         where fdeggrp='{$deggrp}'";
        $res_examdate = $aobj_context->mobj_db->GetRow($qry_examdate);
        $examdate = $res_examdate['fexamdate'];

        $sub_qry = "select fdegree, fexamno, fsubcode from subject where fqpcode = '{$qpcode}'"; 
        $res_sub_qry = $aobj_context->mobj_db->GetRow($sub_qry);


        $csub_qry = "select fcsubcode, fvalmax from subject where 
                    fdegree = '{$res_sub_qry['fdegree']}' and fexamno = '{$res_sub_qry['fexamno']}' 
                    and fsubcode = '{$res_sub_qry['fsubcode']}' and fonlineqp = 'T'";

        $cres_sub_qry = $aobj_context->mobj_db->GetRow($csub_qry);

        if($type === 'MCQ'){
            $typeCnd = "and ifnull(fonlineqp, '') = 'T'";
        }else{
            $typeCnd = "";
        }

        $query = "select ifnull(FQPPATREN,'') as FQPPATREN, ifnull(ftempcode, '')as ftempcode, ifnull(fonlineqp, 'F') as fonlineqp from subject 
                  where fqpcode = '{$qpcode}' $typeCnd";
        $res = $aobj_context->mobj_db->GetRow($query);

        $tempcode = $res["ftempcode"];

        if($type === 'MCQ' && !$res){
            $arr['msg'] = 'QP not belongs to MCQ';
            echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"failure");
            return;
        }

        $query11 = "select distinct s.fdegree,s.fqpcode,s.fsubname,dg.fexamdate,d.fexamname,d.fdescpn,s.fsubshort  
        from subject s 
        inner join degree d on s.fdegree = d.fdegree and s.fexamno = d.fexamno
        inner join qpset_deggrp dg on dg.fdeggrp = d.fdeggrp
        where fqpcode = '{$qpcode}'";
    

        $res11 = $aobj_context->mobj_db->GetRow($query11);
    
        $fdegree = $res11['fdegree'];
        $fqpcode = $res11['fqpcode'];
        $fsubname = $res11['fsubname'];
        $fexamdate = $res11['fexamdate'];
        $fexamnmae = $res11['fexamname'];
        $fdescpn = $res11['fdescpn'];
        $fsubshort = $res11['fsubshort'];

        foreach ($table as $value) {
            $fteachcode = $value['fteachcode'];
            $lastdate = $value['flastdate'];
            $fnoqp = $value['fassign'];
            $totalsets = intval($value['totalsets']);
            $assigned = intval($value['fassign']);

            $query = "update qpseter set fappointed = '{$value['status']}', fappointdate = now(),
                      fappointuser = '{$value['fmobile']}', femailstatus = '{$value['emailstatus']}', 
                      fpretype = '{$value['fpretype']}', flastdate = date_format(str_to_date('{$value['flastdate']}', '%d/%m/%Y'), '%Y-%m-%d')
                      where fteachcode = '{$fteachcode}'
                      and fqpcode = '{$qpcode}' and ftype='{$type}' 
                      and fyear='{$value['fyear']}' and fexamtype='{$value['fexamtype']}'";
                      
            $result = $aobj_context->mobj_db->Execute($query);

            $query5 = "update qpseterdet set 
                    fpretype = '{$value['fpretype']}', ftempcode='{$tempcode}'
                    where fteachcode = '{$fteachcode}'
                    and fqpcode = '{$qpcode}' and ftype='{$type}' 
                    and fyear='{$value['fyear']}' 
                    and fexamtype='{$value['fexamtype']}'";
            
            $result5 = $aobj_context->mobj_db->Execute($query5);

            for($i = $totalsets+1; $i <= $totalsets+$assigned; $i++){
                $query = "insert into qpseterdet (fyear, fexamtype, fqpcode, fteachcode, fset, ftype, 
                          fpretype, ftempcode, fexamdate, fmaxmarks, fmaxqn, fcreatedate, fcreateuser)
                          values('{$value['fyear']}', '{$value['fexamtype']}', '{$qpcode}', '{$fteachcode}', {$i}, '{$type}', 
                          '{$value['fpretype']}', '{$tempcode}', '{$examdate}', 
                          '{$cres_sub_qry['fvalmax']}', '{$value['fmaxqn']}', now(), '{$user}')";
                $result = $aobj_context->mobj_db->Execute($query);

                if($type === 'MCQ'){
                    $qry = "insert ignore into mcqqp (fyear, fexamtype, fqpcode, fteachcode, fnoqp, fexamdate, fcreatedate)
                            values('{$value['fyear']}', '{$value['fexamtype']}', '{$qpcode}', '{$fteachcode}', '{$i}', '{$examdate}', now())";
                    $res = $aobj_context->mobj_db->Execute($qry);

                }
            }

            if($value['emailstatus'] == "T" && $value['status'] == 'T'){
                
                $query1 = "select femail, fmobile from masteach where fteachcode = '{$fteachcode}'";
                $res1 = $aobj_context->mobj_db->GetRow($query1);
                $emailid = $res1['femail'];
                $mobile = $res1['fmobile'];

                if($univcode == '030' || $univcode == '061'){
                    $cond = ', fqpsettermail';
                }
                $unishort = "select funivname, ffolder, pdf_logo_path $cond  from control";
                $resunishort = $aobj_context->mobj_db->GetRow($unishort);
                $univname = $resunishort['funivname'];
                $logopath = $resunishort['pdf_logo_path'];
                $fqpsettermail = $resunishort['fqpsettermail'];

                $query2 = "select distinct s.fdegree,s.fqpcode,s.fsubname,
                           dg.fexamdate,d.fexamname,d.fdescpn,s.fsubshort  
                           from subject s 
                           inner join degree d on s.fdegree = d.fdegree and s.fexamno = d.fexamno
                           inner join qpset_deggrp dg on dg.fdeggrp = d.fdeggrp
                           where fqpcode = '{$qpcode}'";
                $res2 = $aobj_context->mobj_db->GetRow($query2);
                $fexamdate = $res2['fexamdate'];

                $logo_path = $logopath;
                if($univcode == "051"){
                    $logo_path = "img/dyp_elogo.jpeg";
                }

                if($univcode == '030'){
                    $logo = "https://universitysolutions.in/".$resunishort['ffolder']. '/'.$logo_path;
                }else{
                    $logo = "https://college.universitysolutions.in/".$resunishort['ffolder']. '/'.$logo_path;
                }

                if($univcode == '030'){
                $teachDet = "select concat(ifnull(FTITLE,''), ' ',ifnull(fteachname, ''))as fteachname, 
                        ifnull(fcollname, '')as fcollname
                        from masteach 
                        where fteachcode = '{$fteachcode}'";
                } else {
                $teachDet = "select concat(ifnull(m.FTITLE,''), ' ',ifnull(m.fteachname, ''))as fteachname, 
                        ifnull(c.fcollname, '')as fcollname, d.fdegncode, 
                        ifnull(d.fdegndesc, '')as fdegndesc,
                        ifnull(m.fcollname,'')as fcollege
                        from masteach m 
                        left join masdegn d on d.fdegncode = m.fdegncode 
                        left join college c on m.fcollcode = c.fcollcode
                        where fteachcode = '{$fteachcode}'";
                }         
                $teachDet1 = $aobj_context->mobj_db->GetRow($teachDet);
                
                $teachname = $teachDet1['fteachname'];
                $colladd = $teachDet1['fcollname'];
                $fcollege = $teachDet1['fcollege'];
                $degn = $teachDet1['fdegndesc'];

                if($univcode=="030" || $univcode=="098" || $univcode=="040" ){
                    $message="<html>";
                    $message.="<body>";
                    $message.="<style>";		
                    $message.=".mail_tbl td{text-align:left; padding:2px; font-size:12px; 
                        font-family: Verdana, Arial, Helvetica, sans-serif;}";	
                    $message.="</style>";
                    $message.="<center><img src='{$logo}' height='100px' width='200px'/></center>";
                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif; text-align:center; color:red'>
                    <u>STRICTLY CONFIDENTIAL </u></p>";

                    if($univcode != "040"){
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        From</p>";
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        <b>Dr. Beena G</b></p>";
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        Controller of Examinations</p>";
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif; text-align:right'>Date.:"." $onldate "."</p>";
                    }

                    $message.="<p>To,<br></p>";
                    $message.="<p><b>"."$teachname"."</b><br></p>";

                    // $message.="<p style='line-height: 0;'>"."$teachname".",<br></p>";
                    if($degn != ""){
                        $message.="<p style='line-height: 2;'>"."$degn".",<br></p>";
                    }

                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                    Dear Sir/Madam,</p>";
                    
                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                    <b>Subject: Appointment as Question Paper setter for"." $univname"." of "."$fexamdate"."</b></p>";

                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                    On the directions of the Vice-Chancellor, I am pleased to inform you of your appointment as 
                    the Question paper setter for the following course. All question papers are expected to be received <b> on 
                    or before "."$lastdate"."</p> </b>";

                    $message .= "<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                    Please note that the QP portal will get auto disabled after the lastdate.</p>";
                    
                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                    The details are as follows:</p>";

                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                    <table style='width: 100%;border: 1px solid'>
                    <tr style='border: 1px solid'>
                    <th style='width: 17%;text-align:left;border: 1px solid'>Program</th>
                    <th style='width: 33%;text-align:center;border: 1px solid'>"."$fdegree - $fdescpn"."</th>
                    <th style='width: 17%;text-align:left;border: 1px solid'>Semester</th>
                    <th style='width: 33%;text-align:center;border: 1px solid'>"."$fexamnmae"."</th>
                    </tr>
                    <tr>
                    <th style='width: 17%;text-align:left;border: 1px solid'>Course code</th>
                    <th style='width: 33%;text-align:center;border: 1px solid'>"."$fsubshort"."</th>
                    <th style='width: 17%;text-align:left;border: 1px solid'>Course Title</th>
                    <th style='width: 33%;text-align:center;border: 1px solid'>"."$fsubname"."</th>
                    </tr>
                    <tr>
                    <th style='width: 17%;text-align:left;border: 1px solid'>No. of sets</th>
                    <th style='width: 33%;text-align:center;border: 1px solid'>"."$fnoqp"."</th>
                    <th style='width: 17%;text-align:left;border: 1px solid'>To be submitted on or  before</th>
                    <th style='width: 33%;text-align:center;border: 1px solid'>"."$lastdate"."</th>
                    </tr>
                    </table>
                    </p>";
                    if($univcode=="040")
                    {
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        The question papers shall be prepared as per the template provided.</p>";
                    }else
                    {
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        The question papers must be prepared as per the template provided.</p>";
                    }
                    

                    $message.="$fqpsettermail";
        
                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                    <b>The following details are attached:</b>
                        <ul>
                        <li>Prescribed syllabus</li>
                        <li>Question paper pattern</li>
                        </ul>
                    </p>";

                    if($univcode != "040" && $univcode != "030"){    
                        $message.="<u>Remuneration details:</u>"."<br>";
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        <table style='width: 70%'>
                        <tr style='text-align:center;border: 1px solid'>
                        <th style='width: 20%;border: 1px solid'>Sl No</th>
                        <th style='width: 60%;border: 1px solid'>Particulars</th>
                        <th style='width: 20%;border: 1px solid'>Remuneration (Rs)</th>
                        </tr>
                        <tr style='text-align:center'>
                        <th style='width: 20%;border: 1px solid'>1</th>
                        <th style='width: 60%;border: 1px solid'>Question Paper setting</th>
                        <th style='width: 20%;border: 1px solid'>700</th>
                        </tr>
                        <tr style='text-align:center'>
                        <th style='width: 20%;border: 1px solid'>2</th>
                        <th style='width: 60%;border: 1px solid'>Detailed solution, scheme of instruction</th>
                        <th style='width: 20%;border: 1px solid'>500</th>
                        </tr>
                        </table>
                        </p>";
                    }

                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                    <strong>The question paper needs to be prepared in the template provided and Submitted back as 
                    per the timeline </strong><br></p>";

                    if($univcode != "040"){
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        <b>Note :</b></p>";
            
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif;color:red;'>
                        <ol>
                            <b>
                            <li>Kindly use font Calibri, size 12 as a standard font for all QP’s.</li>
                            <li>The QP submitted after the mentioned timeline will not be accepted.</li>
                            </b>
                        </ol>
                        <br>";
                    }  

                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                            <b>Registration Steps are : </b>
                    <ol>
                        <li style='color:red;'>Enter Teacher code which is available in your mail</li>
                        <li style='color:red;'>Click Validate</li>
                        <li style='color:red;'>Fill details as: Enter your Email id and Password is your mobile number. Reenter the same password.</li>
                        <li style='color:red;'>Click Send OTP. You will receive the OTP on your mobile and email also.</li>
                        <li style='color:red;'>Enter OTP.</li>
                        <li style='color:red;'>After this for Login: your mobile number will be the user id and password.</li>
                        <li style='color:red;'>After Login in Question Paper setting Accept the Question Paper Request.</li>
                        <li style='color:red;'>You can see the Question Paper Pattern and Syllabus.</li>
                        <li style='color:red;'>Question Paper as per given pattern.</li>
                        <li style='color:red;'>For Uploading the Question Paper and click upload button. Repeat the same steps for uploading second set of question paper.</li>
                        
                    </ol>
                    </p>";
                    // <li style='color:red;'><b>Update the Bank details.</b></li>

                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                    Portal Login details are as follows.<br><br>";
                    $message.="Portal Link: https://qpms.universitysolutions.in/#/".strtolower($resunishort['ffolder'])."/register"."<br>";
                    $message.="Teacher Code:"." $fteachcode"."<br>";
                    $message.="Mobile No.:"." $mobile"."<br></p>";

                    if($univcode == "040"){
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        In case if you have any technical issues, Kindly call 7619186835 or revert to mail dyregistrar.evln@acu.edu.in <br></p>";

                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        Thanking You,</p>";

                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        Yours Sincerely</p><br>";
                    } else {
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        In case if you have any technical issues, Kindly call 080-46966966,Ext.244 or revert to mail ru_qp.coe@reva.edu.in <br></p>";

                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        Thanking You,</p>";

                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        Yours Sincerely</p><br>";
                    }    
                    $querySign =  "select distinct s.fqpcode, d.fsignpath from degree d inner join subject s on 
                                    s.fdegree = d.fdegree and s.fexamno = d.fexamno 
                                    where s.fqpcode='{$fqpcode}' and ifnull(fsignpath,'')<>''";
            
                    $ressign = $aobj_context->mobj_db->GetRow($querySign);
                        
                    $sign = $ressign['fsignpath'];

                    if($univcode == '030'){
                        $signpath = "https://universitysolutions.in/".$resunishort['ffolder']."/img/".$sign;
                    } else {
                        $signpath = "https://college.universitysolutions.in/".$resunishort['ffolder']."/img/".$sign;
                    }
                    if($sign!==NULL){
                        $message .= "<img src='{$signpath}' width='100' height='50'/>";
                        $message .= "<br/>";
                    }

                    if($univcode == "040"){
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        Registrar Evaluation<br> "." $univname"."<br>
                        </p>";
                    } else {
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        Controller of Examinations<br> "." $univname"."<br>
                        </p>";
                    }
            
                    $message.="</body>";
                    $message.="</html>";
                }else if($univcode == '061'){
                    if($type === 'THEORY'){
                        $message="<html>";
                        $message.="<body>";
                        $message.="<style>";		
                        $message.=".mail_tbl td{text-align:left; padding:2px; font-size:12px; 
                            font-family: Verdana, Arial, Helvetica, sans-serif;}";	
                        $message.="</style>";
                        // $message.="<center><img src='{$logo}' height='100px' width='200px'/></center>";
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif; text-align:center; color:red'>
                        <u>STRICTLY CONFIDENTIAL </u></p>";

                        // $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        // From</p>";
                        // $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        // <b>Prof. Anandhi G</b></p>";
                        // $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        // Controller of Examinations</p>";
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif; text-align:right'>Date.:"." $onldate "."</p>";

                        $message.="<p>To,<br></p>";
                        $message.="<p><b>"."$teachname"."</b><br></p>";

                        if($degn != ""){
                            $message.="<p style='line-height: 2;'>"."$degn".",<br></p>";
                        }
                        if($colladd != "" || $fcollege){
                            $colname = "";
                            if($colladd != "")
                                $colname = $colladd;
                            else if($fcollege != "")
                                $colname = $fcollege;
                            $message.="<p style='line-height: 0;'>"."$colname".",<br></p>";
                        }

                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        Dear Sir/Madam,</p>";
                        
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        <b>Subject: Appointment as SEE Question Paper setter for"." $univname"." of "."$fexamdate"."</b></p>";

                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        On the directions of the Principal, I am pleased to inform you of your appointment as the 
                        Semester End Exam(SEE) Question paper setter for the following course. 
                        The question paper is expected to be uploaded in the link given below,<b> on 
                        or before "."$lastdate"." as per the format available in the QP portal.</b></p>";

                        // $message .= "<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        // Please note that the QP portal will get auto disabled after the lastdate.</p>";
                        
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        The course details are as follows:</p>";

                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        <table style='width: 100%;border: 1px solid'>
                        <tr style='border: 1px solid'>
                        <th style='width: 17%;text-align:left;border: 1px solid'>Program</th>
                        <th style='width: 33%;text-align:center;border: 1px solid'>B.E</th>
                        <th style='width: 17%;text-align:left;border: 1px solid'>Semester</th>
                        <th style='width: 33%;text-align:center;border: 1px solid'>"."$fexamnmae"."</th>
                        </tr>
                        <tr>
                        <th style='width: 17%;text-align:left;border: 1px solid'>Course code</th>
                        <th style='width: 33%;text-align:center;border: 1px solid'>"."$fsubshort"."</th>
                        <th style='width: 17%;text-align:left;border: 1px solid'>Course Title</th>
                        <th style='width: 33%;text-align:center;border: 1px solid'>"."$fsubname"."</th>
                        </tr>
                        <tr>
                        <th style='width: 17%;text-align:left;border: 1px solid'>No. of sets</th>
                        <th style='width: 33%;text-align:center;border: 1px solid'>"."$fnoqp"."</th>
                        <th style='width: 17%;text-align:left;border: 1px solid'>To be submitted on or  before</th>
                        <th style='width: 33%;text-align:center;border: 1px solid'>"."$lastdate"."</th>
                        </tr>
                        </table>
                        </p>";
                        
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        The question papers must be prepared as per the template provided.</p>";

                        $message.= $fqpsettermail;

                        $message.= "<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'><b>Note :</b>
                        <ul><li>Kindly use font Calibri, size 12 as a standard font for all QP's.</li>
                        <li>The QP submitted after the mentioned timeline will not be accepted.</li></ul></p>";
            
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        <b>Kindly note the following points while setting the question paper/s.</b>
                            <ul>
                            <li>Prescribed syllabus</li>
                            <li>Question paper pattern</li>
                            </ul>
                        </p>";
    
                        $message.="<u>Remuneration details:</u>"."<br>";
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        <table style='width: 70%'>
                        <tr style='text-align:center;border: 1px solid'>
                        <th style='width: 20%;border: 1px solid'>Sl No</th>
                        <th style='width: 60%;border: 1px solid'>Particulars</th>
                        <th style='width: 20%;border: 1px solid'>Remuneration (Rs)</th>
                        </tr>
                        <tr style='text-align:center'>
                        <th style='width: 20%;border: 1px solid'>1</th>
                        <th style='width: 60%;border: 1px solid'>Question Paper setting</th>
                        <th style='width: 20%;border: 1px solid'>800</th>
                        </tr>
                        <tr style='text-align:center'>
                        <th style='width: 20%;border: 1px solid'>2</th>
                        <th style='width: 60%;border: 1px solid'>Detailed solution, Detailed marking scheme with key answers</th>
                        <th style='width: 20%;border: 1px solid'>700</th>
                        </tr>
                        </table>
                        </p>";
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        <strong>The question paper needs to be prepared in the template provided and Submitted back as per the timeline</strong><br></p>";

                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        <b>Note :</b></p>";
            
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif;color:red;'>
                        <ol>
                            <b>
                            <li>Kindly use font Calibri, size 12 as a standard font for all QP’s.</li>
                            <li>The QP submitted after the mentioned timeline will not be accepted.</li>
                            </b>
                        </ol>
                        <br>";

                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        Portal Login details are as follows.<br><br>";
                        $message.="Portal Link: https://qpms.universitysolutions.in/#/".strtolower($resunishort['ffolder'])."/register"."<br>";
                        $message.="Teacher Code:"." $fteachcode"."<br>";
                        $message.="Mobile No.:"." $mobile"."<br></p>";

                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                                <b>Steps to Register on the QP Portal : </b>
                            <ol>
                            <li style='color:red;'>Select user type as “Teacher”</li>
                            <li style='color:red;'>Enter Teacher code which is shared in this mail</li>
                            <li style='color:red;'>Click “Validate”</li>
                            <li style='color:red;'>Fill the requested details: Enter the password and confirm the same password.</li>
                            <li style='color:red;'>Click Send OTP. You will receive the OTP on your mobile and email also.</li>
                            
                            <li style='color:red;'>Enter OTP.</li>
                            <li style='color:red;'>After this, for Login: User ID - your mobile number; Password is the set password.</li>
                            <li style='color:red;'>After Login into Question Paper portal, click on “Accept the Question Paper Request”.</li>
                            <li style='color:red;'>You can now see the Question Paper Pattern and Syllabus.</li>
                            <li style='color:red;'>Prepare two separate word documents, one for the Question paper and another for the Marking scheme (along with brief answer keys)</li>
                            <li style='color:red;'>QP file name format – QP_Course code_your first name.</li>
                            <li style='color:red;'>Answer key file name format – key_Course code_your first name</li>
                            <li style='color:red;'>Upload both the answer key and the question paper and then click on upload (Action) button.</li>
                            <li style='color:red;'>Update the Bank details.</li>
                            </ol>
                            </p>";
                        
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        In case if you have any technical issues, please mail to - ep_qp.coe@eastpoint.ac.in<br></p>";

                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        Thanking You,</p>";

                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        Yours Sincerely</p><br>";
                            
                        // $querySign =  "select distinct s.fqpcode, d.fsignpath from degree d inner join subject s on 
                        //                 s.fdegree = d.fdegree and s.fexamno = d.fexamno 
                        //                 where s.fqpcode='{$fqpcode}' and ifnull(fsignpath,'')<>''";
                
                        // $ressign = $aobj_context->mobj_db->GetRow($querySign);
                            
                        // $sign = $ressign['fsignpath'];

                        // if($univcode == '030'){
                        //     $signpath = "https://universitysolutions.in/".$resunishort['ffolder']."/img/".$sign;
                        // } else {
                        //     $signpath = "https://college.universitysolutions.in/".$resunishort['ffolder']."/img/".$sign;
                        // }
                        // if($sign!==NULL){
                        //     $message .= "<img src='{$signpath}' width='100' height='50'/>";
                        //     $message .= "<br/>";
                        // }

                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        Prof. Anandhi G <br>
                        Controller of Examinations<br> "." $univname"."<br>
                        </p>";
                
                        $message.="</body>";
                        $message.="</html>";
                    }else if($type == 'MCQ'){
                        $message="<html>";
                        $message.="<body>";
                        $message.="<style>";		
                        $message.=".mail_tbl td{text-align:left; padding:2px; font-size:12px; 
                            font-family: Verdana, Arial, Helvetica, sans-serif;}";	
                        $message.="</style>";
                        // $message.="<center><img src='{$logo}' height='100px' width='200px'/></center>";
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif; text-align:center; color:red'>
                        <u>STRICTLY CONFIDENTIAL </u></p>";

                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif; text-align:right'>Date.:"." $onldate "."</p>";

                        $message.="<p>To,<br></p>";
                        $message.="<p><b>"."$teachname"."</b><br></p>";

                        if($degn != ""){
                            $message.="<p style='line-height: 2;'>"."$degn".",<br></p>";
                        }
                        if($colladd != ""){
                            $message.="<p style='line-height: 0;'>"."$colladd".",<br></p>";
                        }

                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        Dear Sir/Madam,</p>";
                        
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        <b>Subject: Appointment as SEE Question Paper setter for"." $univname"." of "."$fexamdate"."</b></p>";

                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        On the directions of the Principal, I am pleased to inform you of your appointment as the 
                        Semester End Exam(SEE) Question paper setter for the following course. 
                        The question paper is expected to be uploaded in the link given below,<b> on 
                        or before "."$lastdate"." as per the format available in the QP portal.</b></p>";

                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        The course details are as follows:</p>";
                        // "."$fdegree - $fdescpn"."
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        <table style='width: 100%;border: 1px solid'>
                        <tr style='border: 1px solid'>
                        <th style='width: 17%;text-align:left;border: 1px solid'>Program</th>
                        <th style='width: 33%;text-align:center;border: 1px solid'>B.E</th>
                        <th style='width: 17%;text-align:left;border: 1px solid'>Semester</th>
                        <th style='width: 33%;text-align:center;border: 1px solid'>"."$fexamnmae"."</th>
                        </tr>
                        <tr>
                        <th style='width: 17%;text-align:left;border: 1px solid'>Course code</th>
                        <th style='width: 33%;text-align:center;border: 1px solid'>"."$fsubshort"."</th>
                        <th style='width: 17%;text-align:left;border: 1px solid'>Course Title</th>
                        <th style='width: 33%;text-align:center;border: 1px solid'>"."$fsubname"."</th>
                        </tr>
                        <tr>
                        <th style='width: 17%;text-align:left;border: 1px solid'>No. of sets</th>
                        <th style='width: 33%;text-align:center;border: 1px solid'>"."$fnoqp"."</th>
                        <th style='width: 17%;text-align:left;border: 1px solid'>To be submitted on or  before</th>
                        <th style='width: 33%;text-align:center;border: 1px solid'>"."$lastdate"."</th>
                        </tr>
                        </table>
                        </p>";
                        
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        The question papers must be prepared as per the template provided.</p>";

                        $message.= "<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        Kindly note the following points while setting the question paper/s.
                        <ul><li>Your appointment as a paper setter should be kept <b>STRICTLY CONFIDENTIAL</b>.</li>
                        <li>Set <b>50</b> questions, such that the questions should cover the prescribed syllabus and further, should be answerable for the set marks. <b>Each question will carry 1 mark.</b></li>
                        <li>Questions shall <b>strictly be from the books prescribed for the course, and should cover the entire syllabus</b></li>
                        <li>Please ensure that there are no out of Syllabus questions in the question paper</li>
                        <li>Wherever figures are used, associate the figures with the respective questions. 
                            For Example, identify the figure pertaining to Q2 as fig. Q2 immediately adjacent to it.</li>";

                        $message.= "<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'><b>Note :</b>
                        <ul><li>Kindly use font Calibri, size 12 as a standard font for all QP's.</li>
                        <li>The QP submitted after the mentioned timeline will not be accepted.</li></ul></p>";
            
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        <b>Kindly note the following points while setting the question paper/s.</b>
                            <ul>
                            <li>Prescribed syllabus</li>
                            <li>Question paper pattern</li>
                            </ul>
                        </p>";
    
                        $message.="<u>Remuneration details:</u>"."<br>";
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        <table style='width: 70%'>
                        <tr style='text-align:center;border: 1px solid'>
                        <th style='width: 20%;border: 1px solid'>Sl No</th>
                        <th style='width: 60%;border: 1px solid'>Particulars</th>
                        <th style='width: 20%;border: 1px solid'>Remuneration (Rs)</th>
                        </tr>
                        <tr style='text-align:center'>
                        <th style='width: 20%;border: 1px solid'>1</th>
                        <th style='width: 60%;border: 1px solid'>Question Paper setting</th>
                        <th style='width: 20%;border: 1px solid'>800</th>
                        </tr>
                        <tr style='text-align:center'>
                        <th style='width: 20%;border: 1px solid'>2</th>
                        <th style='width: 60%;border: 1px solid'>Key Answers, scheme of instruction</th>
                        <th style='width: 20%;border: 1px solid'>700</th>
                        </tr>
                        </table>
                        </p>";
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        <strong>The question paper needs to be prepared in the template provided and Submitted back as per the timeline</strong><br></p>";

                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        <b>Note :</b></p>";
            
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif;color:red;'>
                        <ol>
                            <b>
                            <li>Kindly use font Calibri, size 12 as a standard font for all QP’s.</li>
                            <li>The QP submitted after the mentioned timeline will not be accepted.</li>
                            </b>
                        </ol>
                        <br>";

                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        Portal Login details are as follows.<br><br>";
                        $message.="Portal Link: https://qpms.universitysolutions.in/#/".strtolower($resunishort['ffolder'])."/register"."<br>";
                        $message.="Teacher Code:"." $fteachcode"."<br>";
                        $message.="Mobile No.:"." $mobile"."<br></p>";

                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                                <b>Steps to Register on the QP Portal : </b>
                            <ol>
                            <li style='color:red;'>Select user type as “Teacher”</li>
                            <li style='color:red;'>Enter Teacher code which is shared in this mail</li>
                            <li style='color:red;'>Click “Validate”</li>
                            <li style='color:red;'>Fill the requested details: Enter the password and confirm the same password.</li>
                            <li style='color:red;'>Click Send OTP. You will receive the OTP on your mobile and email also.</li>
                            <li style='color:red;'>Enter OTP.</li>
                            <li style='color:red;'>After this, for Login: User ID - your mobile number; Password is the set password.</li>
                            <li style='color:red;'>After Login into Question Paper portal, click on “Accept the Question Paper Request”.</li>
                            <li style='color:red;'>Click on upload Objective Question Paper.</li>
                            <li style='color:red;'>Click Edit button, Select the respective Question number  to type the Question.</li>
                            <li style='color:red;'>Enter Question number,  max marks=1,  and select the key answer from dropdown.</li>
                            <li style='color:red;'>Type the Question and options in the required field.</li>
                            <li style='color:red;'>To go to next question click “Save & Next question” button.</li>
                            <li style='color:red;'>After entering all 50 Questions click preview button to view the full question paper.</li>
                            <li style='color:red;'>For any corrections click the respective question number and make changes and save as Draft.</li>
                            <li style='color:red;'>After completion click on tick Button    for final submission.</li>
                            <li style='color:red;'>Update the Bank details.</li>
                            </ol>
                            </p>";
                        
                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        In case if you have any technical issues, please mail to - ep_qp.coe@eastpoint.ac.in<br></p>";

                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        Thanking You,</p>";

                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        Yours Sincerely</p><br>";

                        $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                        Prof. Anandhi G <br>
                        Controller of Examinations<br> "." $univname"."<br>
                        </p>";
                
                        $message.="</body>";
                        $message.="</html>";
                    }
                }
                 else {
                    $message="<html>";
                    $message.="<body>";
                    $message.="<style>";		
                    $message.=".mail_tbl td{text-align:left; padding:2px; font-size:12px; 
                        font-family: Verdana, Arial, Helvetica, sans-serif;}";	
                    $message.="</style>";
                    $message.="<center><img src='{$logo}' height='100px' width='200px'/></center>";
                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif; text-align:center; color:red'>
                    <u>CONFIDENTIAL</u></p>";
                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                    Ref.: DYPU/COE/AYU/2022-23/EP/C-041.</p>";
                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif; text-align:right'>Date.:"." $onldate "."</p>";

                    $message.="<p>To,<br></p>";
                    $message.="<p style='line-height: 0;'>"."$teachname".",<br></p>";
                    if($degn != ""){
                        $message.="<p style='line-height: 2;'>"."$degn".",<br></p>";
                    }
                    if($colladd != ""){
                        $message.="<p style='line-height: 0;'>"."$colladd".",<br></p>";
                    }
                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                    Sub: Appointment as Question Paper Setter for the University Examination.</p>";

                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                    Respected Sir / Madam,</p>";

                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                    I am pleased to inform you that this university has appointed you as Question Paper Setter for the following course in ".$fexamnmae." ".$fdescpn."</p>";
                    
                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                    <table style='width: 100%;border: 1px solid'><tr><th style='border: 1px solid'>Course Code</th>
                    <th style='border: 1px solid'>Course Name</th><th style='border: 1px solid'>Number of Question papers with Answer key</th></tr>
                    <tr style='text-align:center'><td style='border: 1px solid'>"."$fqpcode"."</td><td style='border: 1px solid'>"."$fsubname"."</td>
                    <td style='border: 1px solid'>"."$fnoqp"."</td></tr></table></p>";

                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                    Syllabus with Course Outcomes (CO) and Question Paper Pattern are provided. Kindly prepare question paper as per the requirements
                    of COs and Blooms Taxonomy (Preferably higher cognitive levels) and indicate them at the appropriate places in the question paper along with the marks allotted.</p>";

                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                    Also share the brief answer key (All Sections) for all questions with proper mark split up.</p>";

                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                    The Question paper and the answer key (All Sections) are to be uploaded only in the portal on or before "."$lastdate"."</p>";
                    
                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                    Kindly submit your bank details at the portal.</p>";

                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                    Kindly inform your acceptance within three days of the receipt of this communication</p><br>";

                    $message.="<b>Registration Steps are:</b>";
                    $message.="<p>1. State: Maharashtra</p>";
                    $message.="<p>2. University: D Y Patil University, Navi Mumbai</p>";
                    $message.="<p>3. Select user type as Teacher</p>";
                    $message.="<p>4. Enter Teacher code which is available in your mail</p>";
                    $message.="<p>5. Click Validate</p>";
                    $message.="<p>6. Fill details as: Enter your Email id and Password is your mobile number. Reenter the same password.</p>";
                    $message.="<p>7. Click Send OTP. You will receive the OTP on your mobile and email also.</p>";
                    $message.="<p>8. Enter OTP.</p>";
                    $message.="<p>9. After this for Login: your mobile number will be the user id and password.</p>";
                    $message.="<p>10. After Login in Question Paper setting Accept the Question Paper Request.</p>";
                    $message.="<p>11. You can see the Question Paper Pattern and Syllabus.</p>";
                    $message.="<p>12. Prepare the two separate word documents</p>";
                    $message.= "<ul><li>Question Paper as per given pattern.</li><li>Brief Answer Keys.</li></ul>";
                    $message.="<p>13. For Uploading the Question Paper, first upload the answer key then upload the question paper and click upload button. Repeat the same steps for uploading second set of question paper.</p>";
                    $message.="<p>14. Update the Bank details.</p>";

                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                    Portal Login details are as follows.<br><br>";
                    $message.="Portal Link: https://qpms.universitysolutions.in/#/".strtolower($resunishort['ffolder'])."/register"."<br>";
                    $message.="Teacher Code:"." $fteachcode"."<br>";
                    $message.="Mobile No.:"." $mobile"."<br></p>";

                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                    Kindly call to 022-30965931/32 in case if you have any technical issues.<br></p>";


                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                    Thanking You,</p>";

                    $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>
                    Yours Sincerely<br>";


                    $querySign =  "select distinct s.fqpcode, d.fsignpath from degree d inner join subject s on 
                                    s.fdegree = d.fdegree and s.fexamno = d.fexamno 
                                    where s.fqpcode='{$fqpcode}' and ifnull(fsignpath,'')<>''";

                    $ressign = $aobj_context->mobj_db->GetRow($querySign);
                    
                    $sign = $ressign['fsignpath'];

                    $signpath = "https://college.universitysolutions.in/".$resunishort['ffolder']."/img/".$sign;

                    if($sign!==NULL){
                        $message .= "<img src='{$signpath}' width='100' height='50'/>";
                        $message .= "<br/>";
                    }
                    $message.="Controller of Examinations<br>"."$univname"."<br>
                    Navi Mumbai
                    </p>";

                    $message.="</body>";
                    $message.="</html>";
                }
                
    
                $subject= strtoupper("$univname".": Appointment as Question Paper Setter for the University Exam ".$fexamdate.""); 
                // $resp = sendGridMail($emailid, $subject, $message, $univcode); 

                $qry10 = "select ifnull(femailkey, '')as femailkey, ifnull(FSUPEMAIL, '')as FSUPEMAIL  from logisys3_comexam.dbname where funivcode='{$univcode}'";
                
				$res10 = $aobj_context->mobj_db->GetRow($qry10);
                
				sendZohoMail($emailid, $subject, $message, $res10['femailkey'], $res10['FSUPEMAIL']);
                
            }
        }

        if ($result) {
            $arr['msg'] = 'Qp setter selected successfully';
            echo $aobj_context->mobj_output->ToJSONEnvelope($arr, 0, "success");
            return;
        }else
        {
            $arr['msg'] = 'Failed to update';
            echo $aobj_context->mobj_output->ToJSONEnvelope($arr, -1, "failure"); 
        }
    }

    function getSelectedQpSetterQp($aobj_context){
        $board = $aobj_context->mobj_data["board"];
        $deggrp = $aobj_context->mobj_data["deggrp"];
       
        if($board === "All"){
            $cnd = "";
        }else{
            $cnd = "and s.fboard = '{$board}'";
        }

        $query = "select q.fqpcode ,concat(s.fsubshort,'-',s.fsubname, ' [',q.fqpcode,']')as 					  fsubname from qpseter q inner join subject s 
                  on s.fqpcode = q.fqpcode inner join degree d 
                  on d.fdegree = s.fdegree and d.fexamno = s.fexamno 
                  where fdeggrp = '{$deggrp}' $cnd group by q.fqpcode";
        $result = $aobj_context->mobj_db->GetAll($query);

        if($result){
            echo $aobj_context->mobj_output->ToJSONEnvelope($result, 0, "success");
        }else{
            $arr['msg'] = "No qp data found";
            echo $aobj_context->mobj_output->ToJSONEnvelope($arr, -1, "failure");
            return;
        }
    }
?>