1183510a155d375aba733f480f5578aee8e5bbae
[civicrm-core.git] / partials / crmMailingType / trackandRespond.html
1 <table class="form-layout-compressed">
2 <tbody>
3 <tr>
4 <td>
5 <h3 style ="text-decoration:underline"> Tracking</h3>
6 </td>
7 </tr>
8 <tr>
9 <td>
10 <input type="checkbox" ng-model="currentMailing.url_tracking" ng-true-value="1" ng-false-value="0">&nbsp Track Click Throughs</input>
11 </td>
12 </tr>
13 <tr>
14 <td>
15 <div id="help">
16 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 automaticallly re-written to route through your CiviCRM server prior to redirecting to the target page.
17 </div>
18 </td>
19 </tr>
20 <tr>
21 <!-- <td class="label">Track Opens</td> -->
22 <td>
23 <input type="checkbox" ng-model="currentMailing.open_tracking" ng-true-value="1" ng-false-value="0">&nbsp Track Opens</input>
24 </td>
25 </tr>
26 <tr>
27 <td>
28 <div id="help">
29 Track the number of times recipients open this mailing in their email software.
30 </div>
31 </td>
32 </tr>
33 <tr>
34 <td>
35 <h3 style ="text-decoration:underline">Responding</h3>
36 </td>
37 </tr>
38 <tr>
39 <td>
40 <input type="checkbox" ng-model="trackreplies" ng-true-value="1" ng-false-value="0">&nbsp Track Replies</input>
41 </td>
42 </tr>
43 <tr>
44 <td>
45 <div id="help">
46 Recipients' replies are sent to a CiviMail specific address instead of the sender's address so they can be stored within CiviCRM.
47 </div>
48 </td>
49 </tr>
50 <tr ng-show= "trackr(trackreplies)">
51 <td>
52 <input type="checkbox" ng-model="currentMailing.forward_replies" ng-true-value="1" ng-false-value="0">&nbsp Forward Replies</input>
53 </td>
54 </tr>
55 <tr ng-show= "trackr(trackreplies)">
56 <td>
57 <div id="help">
58 If a recipient replies to this mailing, forward the reply to the FROM Email address specified for the mailing.
59 </div>
60 </td>
61 </tr>
62 <tr ng-show= "trackr(trackreplies)">
63 <td>
64 <input type="checkbox" ng-model="currentMailing.auto_responder" ng-true-value="1" ng-false-value="0">&nbsp Auto-Respond to Replies &nbsp &nbsp</input>
65 <select ng-model="mailAutoResponder" ng-options="au.id as au.name for au in headerfooter| filter:isAuto">
66 <option value="">-none-</option>
67 </select>
68 </td>
69 </tr>
70 <tr ng-show= "trackr(trackreplies)">
71 <td>
72 <div id="help">
73 If a recipient replies to this mailing, send an automated reply using the selected message.
74 </div>
75 </td>
76 </tr>
77 <tr>
78 <td>
79 <h3 style ="text-decoration:underline"> Online Publication</h3>
80 </td>
81 </tr>
82 </table>
83
84 <table class="form-layout-compressed">
85 <tr>
86 <td class="label">Mailing Visibility</td>
87 <td>
88 <select ng-model="currentMailing.visibility">
89 <option value="Public Pages">Public Pages</option>
90 <option value="User and User Admin Only">User and User Admin Only</option>
91 </select>
92 </td>
93 </tbody>
94 </table>
95
96