/
var
/
www
/
barefootlaw.org
/
bios
/
scp
/
Upload File
HOME
<?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'); $info=array(); $info['subj']='osTicket test email'; 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['message']) $errors['message']=__('Message required'); if(!$errors && $email){ if($email->send($_POST['email'],$_POST['subj'], Format::sanitize($_POST['message']), null, array('reply-tag'=>false))) { $msg=Format::htmlchars(sprintf(__('Test email sent successfully to <%s>'), $_POST['email'])); Draft::deleteForNamespace('email.diag'); } else $errors['err']=__('Error sending email - try again.'); }elseif($errors['err']){ $errors['err']=__('Error sending email - 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=Format::htmlchars(($errors && $_POST)?$_POST:$info); ?> <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 $sql='SELECT email_id,email,name,smtp_active FROM '.EMAIL_TABLE.' email ORDER by name'; if(($res=db_query($sql)) && db_num_rows($res)){ while(list($id,$email,$name,$smtp)=db_fetch_row($res)){ $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="message" cols="21" rows="10" style="width: 90%;" <?php list($draft, $attrs) = Draft::getDraftAndDataAttrs('email.diag', false, $info['message']); echo $attrs; ?>><?php echo $draft ?: $info['message']; ?></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'); ?>