?
Current Path : /home1/savoy/public_html/savoyglobal.net/ccnerp/application/views/email/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/public_html/savoyglobal.net/ccnerp/application/views/email/emaillist.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); $this->load->view('documentreadyfunctions'); $template_details = $this->mastermodel->getdatas('emailtemplate'); ?> <script type="text/javascript"> function usetemplate(status) { var template_id=status.value; if(template_id!=""){ $.ajax({ type: "POST", url: "<?= site_url('email/gettemplatesubj') ?>/" +template_id, success: function(msg) { $("#template_subject").val(msg); } }); $.ajax({ type: "POST", url: "<?= site_url('email/gettemplatecont') ?>/" +template_id, success: function(msg) { var myIframe= document.getElementById("template_contentsIFrame"); var iframeDocument = (myIframe.contentWindow || myIframe.contentDocument); if (iframeDocument.document) iframeDocument = iframeDocument.document; iframeDocument.body.innerHTML = msg; $("#template_contents").val(msg); } }); } else{ $("#template_subject").val(""); var myIframe= document.getElementById("template_contentsIFrame"); var iframeDocument = (myIframe.contentWindow || myIframe.contentDocument); if (iframeDocument.document) iframeDocument = iframeDocument.document; iframeDocument.body.innerHTML = ""; $("#template_contents").val(""); // $("#msg_notemp").remove(); // $("#msg_temp").html('<textarea name="template_contents" class="required wysiwyg" cols="50" rows="15" style="width: 700px; margin: 10px 0;"></textarea> ') // newtextarea(); } } function newtextarea() { $('.wysiwyg').wysiwyg( { controls : { separator01 : { visible : true }, separator03 : { visible : true }, separator04 : { visible : true }, separator00 : { visible : true }, separator07 : { visible : false }, separator02 : { visible : false }, separator08 : { visible : false }, insertOrderedList : { visible : true }, insertUnorderedList : { visible : true }, undo: { visible : true }, redo: { visible : true }, justifyLeft: { visible : true }, justifyCenter: { visible : true }, justifyRight: { visible : true }, justifyFull: { visible : true }, subscript: { visible : true }, superscript: { visible : true }, underline: { visible : true }, increaseFontSize : { visible : false }, decreaseFontSize : { visible : false } } } ); } $(document).ready(function(){ newtextarea(); }); </script> <span id="inner_msg"></span> <div class="icons_main"> <div class="icons"> <img src="<?= base_url() ?>assets/images/back.png" title="Add New" class="clickimage" onclick="addformdisplay('view_send_email','email')" alt="Add New" align = "center" width="32" height="32" /> </div> <div class="icons_caption"> <h4>Send Email</h4> </div> </div> <div class="clean"></div> <?php $attributes = array('id' => 'validateform', 'class' => 'validate'); echo form_open('email/addinemail/insertemail/view_send_email/1/', $attributes); ?> <div class="grid_12"> <div class="box"> <div class="header main">Email List </div> <div class="content no-padding"> <table id="" class="table"> <thead> <tr> <th style="width: 17px;">Sl No.</th> <th>Name</th> <th>Nationality</th> <th>Gender</th> <th>Student Reg No</th> <th>Class Name Code</th> <th>Email</th> <th style="width: 135px;">Type</th> <th style="width: 70px;"> <input name="checkall" checked id="checkall" type="checkbox" onchange="checkasll(this)"/> </th> </tr> </thead> <tbody> <?php $slno = 0; if (!empty($viewinfo)) { if ($viewinfo->num_rows() > 0) { $sorLst1 = array(); $list = $viewinfo->result(); foreach ($list as $user) { $sorLst[] = $user->master_id; } array_multisort($sorLst, SORT_ASC, $list); $list1 = array(); foreach ($list as $row) { if ($row->type == 'Father' || $row->type == 'Mother' || $row->type == 'Student') { $std_id = $this->mastermodel->get_single_field_value('student', 'student_id', 'reg_no', $row->reg); $date = date("d-m-Y"); $class_id = $this->mastermodel->get_single_field_value('class_name', 'class_name_id', 'class_name_code', $row->class_name_code); $deactivate = $this->studentmodel->check_deactivate($class_id, $std_id, $date); if ($deactivate == 0) { $list1[] = $row; } } else { $list1[] = $row; } } $temp = ""; foreach ($list1 as $row) { ?> <tr <?php if ($slno % 2 == 0) { ?>class="first" <?php } else { ?> class="second" <?php } ?>> <td><?php if ($temp != $row->sort_id) { echo++$slno; } $temp = $row->sort_id; ?> </td> <td><?= $row->name; ?></td> <td><?= $row->nationality; ?></td> <td><?= $row->gender; ?></td> <?php if ($row->type == 'Father' || $row->type == 'Mother' || $row->type == 'Student') { ?> <td><?= $row->reg; ?></td> <?php } else { ?> <td></td> <?php } ?> <td><?= $row->class_name_code; ?></td> <td><?= $row->email; ?></td> <td><?= $row->type; ?></td> <td> <div class="actions_menu"> <input type="hidden" name="<?php echo "receipent_name_" . $slno; ?>" value="<?= $row->name; ?>"/> <input type="hidden" name="<?php echo "receipent_type_" . $slno; ?>" value="<?= $row->type; ?>"/> <input name="<?php echo "check_email_" . $slno; ?>" checked value="<?= $row->email; ?>" id="check_email" type="checkbox"/> </div> </td> </tr> <?php } } } ?> <input name="email_count" value="<?= $slno; ?>" type="hidden"> </tbody> </table> </div> <div class="header main">Email Information</div> <div class="content no-padding"> <div class="section _100"> <label>Use Template</label> <div class="single_page"> <div style="width: 70%;"> <select name="template_id" id="template_id" onchange="usetemplate(this)"> <option value="" selected>Select Template</option> <?php foreach ($template_details as $row) { ?> <option value="<?= $row['template_id'] ?>"><?= $row['template_title'] ?></option> <?php } ?> </select> </div> </div> </div> <div class="section _100"> <label>Subject</label> <div class="single_page"> <div> <input type="text" class="required" name="template_subject" cols="50" id="template_subject" style="width: 70%;"/> </div> </div> </div> <div class="section _100"> <label>Contents</label> <div class="single_page"> <div style="width:700px;"> <div id="msg_notemp"> <textarea name="template_contents" id="template_contents" class="required wysiwyg" cols="50" rows="15" style=" margin: 10px 0;width: 700px;"></textarea> </div> <!-- <div id="msg_temp"> </div>--> </div> </div> <br/> </div> </div> <div class="actions"> <input type="hidden" name="resfunction" value="search_send_email"/> <div class="actions-right"> <button type="submit" id="submit" class="clickimage" onclick="addformdata('validateform')">Send</button> </div> </div> </div> </div> <?php echo form_close(); ?>