PATH:
home
/
centosnipponia
/
public_html
/
ticketing.nipponia.com
/
ticketing-old
/
scp
<?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'); 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'); ?>
[+]
..
[-] admin.inc.php
[edit]
[-] admin.php
[edit]
[-] ajax.php
[edit]
[-] apikeys.php
[edit]
[+]
apps
[-] audits.php
[edit]
[-] autocron.php
[edit]
[-] banlist.php
[edit]
[-] canned.php
[edit]
[-] categories.php
[edit]
[+]
css
[-] dashboard.php
[edit]
[-] departments.php
[edit]
[-] directory.php
[edit]
[-] emails.php
[edit]
[-] emailsettings.php
[edit]
[-] emailtest.php
[edit]
[-] export.php
[edit]
[-] faq.php
[edit]
[-] filters.php
[edit]
[-] forms.php
[edit]
[-] helptopics.php
[edit]
[+]
images
[-] index.php
[edit]
[+]
js
[-] kb.php
[edit]
[-] lists.php
[edit]
[-] login.php
[edit]
[-] logo.php
[edit]
[-] logout.php
[edit]
[-] logs.php
[edit]
[-] orgs.php
[edit]
[-] pages.php
[edit]
[-] plugins.php
[edit]
[-] profile.php
[edit]
[-] pwreset.php
[edit]
[-] queues.php
[edit]
[-] roles.php
[edit]
[-] schedules.php
[edit]
[-] settings.php
[edit]
[-] slas.php
[edit]
[-] staff.inc.php
[edit]
[-] staff.php
[edit]
[-] system.php
[edit]
[-] tasks.php
[edit]
[-] teams.php
[edit]
[-] templates.php
[edit]
[-] tickets.php
[edit]
[-] upgrade.php
[edit]
[-] users.php
[edit]
[-] .htaccess.disabled
[edit]