vpanel-stack/panel/ui/vmail/autoresponders.html
Matthew Saunders Brown fd94a4e3c4 initial commit
2022-07-01 15:24:26 -07:00

36 lines
1.1 KiB
HTML

<include href="header.html" />
<check if="{{ @autoresponders_array }}">
<true>
<table>
<tr>
<th>Account</th>
<th>Subject</th>
<th>Mode</th>
<th>Status</th>
<th>Action</th>
</tr>
<repeat group="{{ @autoresponders_array }}" value="{{ @autoresponder_array }}">
<tr>
<td><a href="{{@NAV.vmailbase}}/Accounts/{{ @autoresponder_array.mbox }}">{{ @autoresponder_array.mbox }}@{{@PARAMS.domain}}</a></td>
<td>{{@autoresponder_array.subject}}</td>
<td>{{@autoresponder_array.mode}}</td>
<td>{{@autoresponder_array.status}}</td>
<td><a href="{{@NAV.vmailbase}}/Accounts/{{ @autoresponder_array.mbox }}/Autoresponder/Edit">Edit</a> <a href="{{@NAV.vmailbase}}/Accounts/{{ @autoresponder_array.mbox }}/Autoresponder/Delete">Delete</a></td>
</tr>
</repeat>
</table>
</true>
<false>
<p>
There are no email autorsponders for {{@PARAMS.domain}}<br>
To add a new autorsponder first select an <a href="{{@NAV.vmailbase}}/Accounts">email account</a>.</br>
</false>
</check>
<p>
</p>
<include href="footer.html" />