Server IP : 184.154.167.98 / Your IP : 3.142.198.148 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/mesa/scp/ |
Upload File : |
<?php /********************************************************************* emailtest.php Email Diagnostic Peter Rotich <peter@osticket.com> Copyright (c) 2006-2013 osTicket http://www.osticket.com Released under the GNU General Public License WITHOUT ANY WARRANTY. See LICENSE.TXT for details. vim: expandtab sw=4 ts=4 sts=4: **********************************************************************/ require('admin.inc.php'); include_once(INCLUDE_DIR.'class.email.php'); include_once(INCLUDE_DIR.'class.csrf.php'); if($_POST){ $errors=array(); $email=null; if(!$_POST['email_id'] || !($email=Email::lookup($_POST['email_id']))) $errors['email_id']=__('Select from email address'); if(!$_POST['email'] || !Validator::is_valid_email($_POST['email'])) $errors['email']=__('Valid recipient email address required'); if(!$_POST['subj']) $errors['subj']=__('Subject required'); if(!$_POST['body']) $errors['body']=__('Message required'); if(!$errors && $email){ if($email->send($_POST['email'],$_POST['subj'], Format::sanitize($_POST['body']), null, array('reply-tag'=>false))) { $msg=Format::htmlchars(sprintf(__('Test email sent successfully to <%s>'), $_POST['email'])); Draft::deleteForNamespace('email.diag'); } else $errors['err']=sprintf('%s - %s', __('Error sending email'), __('Please try again!')); }elseif($errors['err']){ $errors['err']=sprintf('%s - %s', __('Error sending email'), __('Please try again!')); } } $nav->setTabActive('emails'); $ost->addExtraHeader('<meta name="tip-namespace" content="emails.diagnostic" />', "$('#content').data('tipNamespace', '".$tip_namespace."');"); require(STAFFINC_DIR.'header.inc.php'); $info=array(); $info['subj']='osTicket test email'; $info=Format::htmlchars(($errors && $_POST)?$_POST:$info, true); ?> <form action="emailtest.php" method="post" class="save"> <?php csrf_token(); ?> <input type="hidden" name="do" value="<?php echo $action; ?>"> <h2><?php echo __('Test Outgoing Email');?></h2> <table class="form_table" width="940" border="0" cellspacing="0" cellpadding="2"> <thead> <tr> <th colspan="2"> <em><?php echo __('Use the following form to test whether your <strong>Outgoing Email</strong> settings are properly established.'); ?> <i class="help-tip icon-question-sign" href="#test_outgoing_email"></i></em> </th> </tr> </thead> <tbody> <tr> <td width="120" class="required"> <?php echo __('From');?>: </td> <td> <select name="email_id"> <option value="0">— <?php echo __('Select FROM Email');?> —</option> <?php $emails = Email::objects()->values_flat('email_id', 'email', 'name', 'smtp__active') ->order_by('name'); print $emails; foreach ($emails as $row) { list($id,$email,$name,$smtp) = $row; $selected = ($info['email_id'] && $id == $info['email_id']) ? 'selected="selected"' : ''; if ($name) $email = Format::htmlchars("$name <$email>"); if ($smtp) $email .= ' ('.__('SMTP').')'; echo sprintf('<option value="%d" %s>%s</option>', $id, $selected, $email); } ?> </select> <span class="error"><?php echo $errors['email_id']; ?></span> </td> </tr> <tr> <td width="120" class="required"> <?php echo __('To');?>: </td> <td> <input type="text" size="60" name="email" value="<?php echo $info['email']; ?>" autofocus> <span class="error"><?php echo $errors['email']; ?></span> </td> </tr> <tr> <td width="120" class="required"> <?php echo __('Subject');?>: </td> <td> <input type="text" size="60" name="subj" value="<?php echo $info['subj']; ?>"> <span class="error"><?php echo $errors['subj']; ?></span> </td> </tr> <tr> <td colspan=2> <div style="padding-top:0.5em;padding-bottom:0.5em"> <em><strong><?php echo __('Message');?></strong>: <?php echo __('email message to send.');?></em> <span class="error"><?php echo $errors['message']; ?></span></div> <textarea class="richtext draft draft-delete" name="body" cols="21" rows="10" style="width: 90%;" <?php list($draft, $attrs) = Draft::getDraftAndDataAttrs('email.diag', false, $info['body']); echo $attrs; ?>><?php echo $draft ?: $info['body']; ?></textarea> </td> </tr> </tbody> </table> <p style="text-align:center;"> <input type="submit" name="submit" value="<?php echo __('Send Message');?>"> <input type="reset" name="reset" value="<?php echo __('Reset');?>"> <input type="button" name="cancel" value="<?php echo __('Cancel');?>" onclick='window.location.href="emails.php"'> </p> </form> <?php include(STAFFINC_DIR.'footer.inc.php'); ?>