?
Current Path : /home1/savoy/public_html/savoyglobal.net/talentquest2013/application/views/admin/ |
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/talentquest2013/application/views/admin/email_list.php |
<link rel="stylesheet" type="text/css" href="<?=base_url()?>assets/admin/css/jquery.wysiwyg.css" media="screen" /> <script type="text/javascript" src="<?=base_url()?>assets/admin/js/jquery.wysiwyg.js"></script> <script type="text/javascript"> $(function () { $('#checkall').click(function () { $('#select_table').find(':checkbox').attr('checked', this.checked); }); }); $(function() { $('#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 } } } ); }); </script> <form id="validateform" class="formnew" action="<?=site_url();?>/admin/send_email/" method="post"> <table id="myTable" class="tablesorter"> <thead> <tr> <th style="width:2%; text-align:center;"><input name="checkall" id="checkall" type="checkbox" onchange="checkall(this)"/></th> <th style="width:20%">School Name</th> <th style="width:10%">Contact Name</th> <th style="width:10%">Contact #</th> <th style="width:10%">Email</th> <th style="width:10%">Event</th> </tr> </thead> <tbody id="select_table"> <?php $i=1; foreach ($viewinfo as $registration) { ?> <tr> <td class="align-center"><input type="checkbox" name="email_checkbox[]" value="<?=$registration['contact_email'];?>"/></td> <td><?=$registration['registration_school_name'];?></td> <td><?=$registration['contact_person'];?></td> <td><?=$registration['contact_no'];?></td> <td><?=$registration['contact_email'];?></td> <td><?=$registration['event_name'];?></td> </tr> <?php } ?> </tbody> </table> <div class="module-body"> <p> <label>Subject</label> <input type="text" name="subject" id="subject" class="input-medium required" /> </p> <p> <label>Content</label> <textarea name="content" id="wysiwyg" cols="" rows="9" class="input-medium required" ></textarea> </p> <fieldset> <input class="submit-green" type="submit" value="Send Email" name="savep" onclick="addformdata('validateform')" /> </fieldset> </div> </form>