summaryrefslogtreecommitdiff
path: root/www/crm/wp-content/plugins/civicrm/civicrm/ang/crmMailing/PreviewRecipCtrl.html
blob: 6eb6459aa1c4fb29cb78cd99230e35b087db3719 (plain)
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
<div ng-controller="PreviewRecipCtrl">
  <!--
  Controller: PreviewRecipCtrl
  Required vars: model.sample
  -->

  <div class="help">
    <p>{{ts('Based on current data, approximately %1 contacts will receive a copy of the mailing.', {1: model.count})}}</p>

    <p ng-show="model.sample.length == model.sampleLimit">{{ts('Below is a sample of the first %1 recipients.', {1: model.sampleLimit})}}</p>

    <p>{{ts('If individual contacts are separately modified, added, or removed, then the final list may change.')}}</p>
  </div>

  <div ng-show="model.sample == 0">
    {{ts('No recipients')}}
  </div>
  <table ng-show="model.sample.length > 0">
    <thead>
      <tr>
        <th>{{ts('Name')}}</th>
        <th>{{ts('Email')}}</th>
      </tr>
    </thead>
    <tbody>
      <tr ng-repeat="recipient in model.sample">
        <td>{{recipient['api.contact.getvalue']}}</td>
        <td>{{recipient['api.email.getvalue']}}</td>
      </tr>
    </tbody>
  </table>
</div>