1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
# --
# AdminEmail.dtl - provides global HTML AdminEmail
# Copyright (C) 2001-2005 Martin Edenhofer <martin+code@otrs.org>
# --
# $Id: AdminEmail.dtl,v 1.10 2005/07/03 13:15:04 martin Exp $
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
# did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
# --
<!-- start -->
<table border="0" width="100%" cellspacing="0" cellpadding="3" cols="1">
<tr>
<td class="mainhead">
$Env{"Box0"}$Text{"Admin Notification"}$Env{"Box1"}
</td>
</tr>
<tr>
<td align="center" class="mainbody">
<br>
<!-- dtl:block:Sent -->
<table border="0" width="700" cellspacing="0" cellpadding="4">
<tr>
<td class="contenthead">$Text{"Options"}:</td>
</tr>
<tr>
<td class="contentbody">
<p>
$Text{"Message sent to"}: $Data{"Bcc"}
</p>
</td>
</tr>
</table>
<br>
<!-- dtl:block:Sent -->
<!-- dtl:block:Form -->
<form action="$Env{"CGIHandle"}" method="post">
<input type="hidden" name="Action" value="$Env{"Action"}">
<input type="hidden" name="Subaction" value="Send">
<table border="0" width="700" cellspacing="0" cellpadding="4">
<tr>
<td class="contenthead">$Text{"Options"}:</td>
</tr>
<tr>
<td class="contentbody">
<table border="0" width="700" cellspacing="0" cellpadding="4">
<tr>
<td class="contentkey">$Text{"From"}:</td>
<td class="contentvalue"><input type="Text" name="From" value="$Config{"AdminEmail"}" size="40"></td>
</tr>
<tr>
<td class="contentkey">$Text{"Recipents"}:</td>
<td class="contentvalue">
<table border="0" cellspacing="0" cellpadding="1" width="70%">
<tr>
<td rowspan="2" valign="top">$Text{"User"}:<br>$Data{"UserOption"}</td>
<td valign="top">$Text{"Group"}:<br>$Data{"GroupOption"}</td>
</tr>
<tr>
<td valign="top">$Text{"Permission"}:<br>ro <input type="radio" name="GroupPermission" value="ro" checked> - rw <input type="radio" name="GroupPermission" value="rw"></td>
</tr>
</table>
</td>
</tr>
# get subject
<dtl if ($Data{"Subject"} eq "") { $Data{"Subject"} = "$Text{"OTRS-Admin Info!"}"; }>
<tr>
<td class="contentkey">$Text{"Subject"}:</td>
<td class="contentvalue"><input type="Text" name="Subject" value="$Data{"Subject"}" size="76"></td>
</tr>
<tr>
<td class="contentkey">$Text{"Body"}:</td>
<td class="contentvalue"><textarea name="Body" rows="10" cols="76">$QData{"Body"}</textarea></td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="contentfooter"><input class="button" type="submit" value="$Text{"send"}"></td>
</tr>
</table>
</form>
<!-- dtl:block:Form -->
<br>
</td>
</tr>
</table>
<!-- end -->
|