Merge pull request #5408 from relldoesphp/CRM-16107
[civicrm-core.git] / partials / crmMailing / tracking.html
1 <!--
2 Controller: EditMailingCtrl
3 Required vars: mailing
4 -->
5 <div class="crm-block" ng-form="subform" crm-ui-id-scope>
6 <div class="crm-group">
7 <div crm-ui-field="subform.url_tracking" crm-title="ts('Track Click Throughs')" crm-layout="checkbox">
8 <input crm-ui-id="subform.url_tracking" name="url_tracking" type="checkbox" ng-model="mailing.url_tracking" ng-true-value="'1'" ng-false-value="'0'" />
9 </div>
10 <div class="crm-section" id="help">
11 {{ts('Track the number of times recipients click each link in this mailing. NOTE: When this feature is enabled, all links in the message body will be automatically re-written to route through your CiviCRM server prior to redirecting to the target page.')}}
12 </div>
13 <div crm-ui-field="subform.open_tracking" crm-title="ts('Track Opens')" crm-layout="checkbox">
14 <input crm-ui-id="subform.open_tracking" name="open_tracking" type="checkbox" ng-model="mailing.open_tracking" ng-true-value="'1'" ng-false-value="'0'" />
15 </div>
16 <div class="crm-section" id="help">
17 {{ts('Track the number of times recipients open this mailing in their email software.')}}
18 </div>
19 </div>
20 </div>