|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/irtiweb/CATS/modules/settings/ |
Upload File : |
<?php /* $Id: EmailSettings.tpl 3310 2007-10-25 21:24:20Z brian $ */ ?>
<?php TemplateUtility::printHeader('Settings', array('modules/settings/validator.js', 'modules/settings/Settings.js')); ?>
<?php TemplateUtility::printHeaderBlock(); ?>
<?php TemplateUtility::printTabs($this->active, $this->subActive); ?>
<div id="main">
<?php TemplateUtility::printQuickSearch(); ?>
<div id="contents">
<table>
<tr>
<td width="3%">
<img src="images/settings.gif" width="24" height="24" border="0" alt="Settings" style="margin-top: 3px;" />
</td>
<td><h2>Settings: Administration</h2></td>
</tr>
</table>
<p class="note">E-Mail Settings</p>
<table>
<tr>
<td>
<form name="emailSettingsForm" id="emailSettingsForm" action="<?php echo(CATSUtility::getIndexName()); ?>?m=settings&a=emailSettings" method="post">
<input type="hidden" name="postback" value="postback" />
<input type="hidden" name="configured" value="1" />
<table class="editTable" width="700">
<tr id="fromAddressRow">
<td class="tdVertical" style="width: 175px;">
<label for="fromAddress" id="fromAddressLabel">From E-Mail Address for Outgoing Messages:</label>
</td>
<td class="tdData">
<input type="text" class="inputbox" name="fromAddress" id="fromAddress" value="<?php $this->_($this->mailerSettingsRS['fromAddress']); ?>" style="width: 180px;" />
</td>
</tr>
<tr>
<td class="tdVertical" style="width: 175px;"> </td>
<td class="tdData"> </td>
</tr>
<tr>
<td class="tdVertical" style="width: 175px;"> </td>
<td class="tdData">
<span>Send Test E-Mail To:</span><br/>
<input type="text" class="inputbox" name="testEmailAddress" id="testEmailAddress" value="" style="margin-bottom: 6px; width: 180px;" />
<span id="testButtonSpanActive" style="display:none;">
<img src="images/indicator2.gif">
</span><br />
<span id="testButtonSpan">
<input type="button" class="button" name="test" id="test" onclick="testEmailSettings('<?php echo($this->sessionCookie); ?>');" value="Test Configuration" />
</span>
<div id="testOutput">
</div>
<div id="divider">
<br />
<br />
</div>
</td>
</tr>
<tr id="fromAddressRow">
<td class="tdVertical" style="width: 175px;">
<label>E-Mail Messages Generated for:</label>
</td>
<td class="tdData">
<input type="checkbox" name="statusChangeContacted" <?php if($this->candidateJoborderStatusSendsMessage[PIPELINE_STATUS_CONTACTED]==1): ?>checked<?php endif; ?>>Status Change: Contacted<br />
<input type="checkbox" name="statusChangeReplied" <?php if($this->candidateJoborderStatusSendsMessage[PIPELINE_STATUS_CANDIDATE_REPLIED]==1): ?>checked<?php endif; ?>>Status Change: Candidate Replied<br />
<input type="checkbox" name="statusChangeQualifying" <?php if($this->candidateJoborderStatusSendsMessage[PIPELINE_STATUS_QUALIFYING]==1): ?>checked<?php endif; ?>>Status Change: Qualifying<br />
<input type="checkbox" name="statusChangeSubmitted" <?php if($this->candidateJoborderStatusSendsMessage[PIPELINE_STATUS_SUBMITTED]==1): ?>checked<?php endif; ?>>Status Change: Submitted<br />
<input type="checkbox" name="statusChangeInterviewing" <?php if($this->candidateJoborderStatusSendsMessage[PIPELINE_STATUS_INTERVIEWING]==1): ?>checked<?php endif; ?>>Status Change: Interviewing<br />
<input type="checkbox" name="statusChangeOffered" <?php if($this->candidateJoborderStatusSendsMessage[PIPELINE_STATUS_OFFERED]==1): ?>checked<?php endif; ?>>Status Change: Offered<br />
<input type="checkbox" name="statusChangeDeclined" <?php if($this->candidateJoborderStatusSendsMessage[PIPELINE_STATUS_CLIENTDECLINED]==1): ?>checked<?php endif; ?>>Status Change: Declined<br />
<input type="checkbox" name="statusChangePlaced" <?php if($this->candidateJoborderStatusSendsMessage[PIPELINE_STATUS_PLACED]==1): ?>checked<?php endif; ?>>Status Change: Placed<br />
<?php foreach ($this->emailTemplatesRS as $index => $data): ?>
<input type="checkbox" name="useThisTemplate<?php echo($data['emailTemplateID']); ?>" id="useThisTemplate<?php echo($data['emailTemplateID']); ?>" <?php if ($data['disabled'] == 0) echo('checked'); ?>> <?php echo($data['emailTemplateTitle']); ?><br />
<?php endforeach; ?>
</td>
</tr>
</table>
<input type="submit" class="button" name="submit" id="submit" value="Save" />
<input type="reset" class="button" name="reset" id="reset" value="Reset" />
</form>
</td>
</tr>
</table>
</div>
</div>
<?php TemplateUtility::printFooter(); ?>