2007-09-16 04:17:51 +02:00
|
|
|
<% if Entries %>
|
|
|
|
<p><b>Instructions:</b></p>
|
|
|
|
<ul>
|
2007-09-16 04:30:08 +02:00
|
|
|
<li>Uncheck the box to enable sending to a blacklisted email address.</li>
|
2007-09-16 04:17:51 +02:00
|
|
|
<li>To remove a recipients's email address from your mailing list, click the <img src="cms/images/delete.gif" alt="delete" /> icon.</li>
|
|
|
|
</ul>
|
2007-09-16 18:37:15 +02:00
|
|
|
<table id="BouncedListTable" class="CMSList BouncedList" summary="<% _t('HAVEBOUNCED','Emails that have bounced') %>">
|
2007-09-16 04:17:51 +02:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2007-09-16 04:30:08 +02:00
|
|
|
<th width="18">Blacklisted</th>
|
2007-09-16 18:37:15 +02:00
|
|
|
<th><% _t('UNAME','User name') %></th>
|
|
|
|
<th><% _t('EMADD','Email address') %></th>
|
2007-09-16 04:17:51 +02:00
|
|
|
<th>Reason:</th>
|
2007-09-16 04:30:33 +02:00
|
|
|
<th>Date</th>
|
2007-09-16 04:17:51 +02:00
|
|
|
<th width="18"> </th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<% control Entries %>
|
|
|
|
<tr>
|
|
|
|
<td class="markingcheckbox">
|
|
|
|
<% if Member.BlacklistedEmail %>
|
|
|
|
<input class="checkbox" type="checkbox" checked="checked" name="BouncedList[]" value="$Record.ID" />
|
2007-09-16 04:30:08 +02:00
|
|
|
<% else %>
|
|
|
|
<input class="checkbox" type="checkbox" name="BouncedList[]" value="$Record.ID" />
|
2007-09-16 04:16:47 +02:00
|
|
|
<% end_if %>
|
2007-09-16 04:17:51 +02:00
|
|
|
</td>
|
|
|
|
<td>$Member.FirstName $Member.Surname</td>
|
|
|
|
<td>$Member.Email</td>
|
|
|
|
<td>$Record.BounceMessage</td>
|
|
|
|
<td>$Record.Created.Long</td>
|
|
|
|
<td width="16"><a class="deletelink" href="admin/newsletter/removebouncedmember/$Record.ID/?GroupID=$GroupID"><img src="cms/images/delete.gif" alt="delete" /></a></td>
|
|
|
|
</tr>
|
|
|
|
<% end_control %>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<% else %>
|
2007-09-16 18:37:15 +02:00
|
|
|
<p><% _t('NOBOUNCED','No emails sent have bounced.') %></p>
|
2007-09-16 04:17:51 +02:00
|
|
|
<% end_if %>
|