Bug 24381: Update sample notices
[srvgit] / installer / data / mysql / en / mandatory / sample_notices.yml
1 ---
2 #
3 #  Copyright 2019 Koha Development Team
4 #
5 #  This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19 # *************************************************************
20 #                       SAMPLE NOTICES
21 # *************************************************************
22
23 description:
24   - "Sample notices"
25
26 tables:
27   - letter:
28       translatable: [ name, title, content ]
29       multiline: [ content ]
30       rows:
31         - module: acquisition
32           code: ACQ_NOTIF_ON_RECEIV
33           branchcode: ""
34           name: "Notification on receiving"
35           is_html: 0
36           title: "Order received"
37           message_transport_type: email
38           lang: default
39           content:
40             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
41             - ""
42             - " The order <<aqorders.ordernumber>> (<<biblio.title>>) has been received."
43             - ""
44             - "Your library."
45
46         - module: circulation
47           code: ACCOUNT_CREDIT
48           branchcode: ""
49           name: "Account payment"
50           is_html: 1
51           title: "Account payment"
52           message_transport_type: print
53           lang: default
54           content:
55             - "[% PROCESS \"accounts.inc\" %]"
56             - "<table>"
57             - "    [% IF ( LibraryName ) %]"
58             - "    <tr>"
59             - "      <th colspan=\"2\" class=\"centerednames\">"
60             - "        <h3>[% LibraryName | html %]</h3>"
61             - "      </th>"
62             - "    </tr>"
63             - "    [% END %]"
64             - "    [% IF credit.library %]"
65             - "    <tr>"
66             - "      <th colspan=\"2\" class=\"centerednames\">"
67             - "        <h2>[% credit.library.branchname | html %]</h2>"
68             - "      </th>"
69             - "    </tr>"
70             - "    [% END %]"
71             - "    <tr>"
72             - "      <th colspan=\"2\" class=\"centerednames\">"
73             - "        <h3>[% credit.date | $KohaDates %]</h3>"
74             - "      </th>"
75             - "    </tr>"
76             - "    <tr>"
77             - "      <td>Transaction ID: </td>"
78             - "      <td>[% credit.accountlines_id %]</td>"
79             - "    </tr>"
80             - "    <tr>"
81             - "      <td>Operator ID: </td>"
82             - "      <td>[% credit.manager_id %]</td>"
83             - "    </tr>"
84             - "    <tr>"
85             - "      <td>Payment type: </td>"
86             - "      <td>[% credit.payment_type %]</td>"
87             - "    </tr>"
88             - "    <tr>"
89             - "      <th colspan=\"2\" class=\"centerednames\">"
90             - "        <h2><u>Payment receipt</u></h2>"
91             - "      </th>"
92             - "    </tr>"
93             - "    <tr>"
94             - "      <th colspan=\"2\">"
95             - "        Received with thanks from  [% credit.patron.firstname | html %] [% credit.patron.surname | html %] <br />"
96             - "        Card number: [% credit.patron.cardnumber | html %]<br />"
97             - "      </th>"
98             - "    </tr>"
99             - "    <tr>"
100             - "      <th>Description of charges</th>"
101             - "      <th>Amount</th>"
102             - "    </tr>"
103             - "    [% FOREACH offset IN credit.credit_offsets %]"
104             - "    <tr>"
105             - "      <td>[% PROCESS account_type_description account=offset.debit %]</td>"
106             - "      <td>[% offset.amount * -1 | $Price %]</td>"
107             - "    </tr>"
108             - "    [% END %]"
109             - "  <tfoot>"
110             - "    <tr class=\"highlight\">"
111             - "      <td>Total:</td>"
112             - "      <td>[% credit.amount * -1 | $Price %]</td>"
113             - "    </tr>"
114             - "    <tr>"
115             - "      <td>Change given: </td>"
116             - "      <td>[% change | $Price %]</td>"
117             - "    </tr>"
118             - "    <tr>"
119             - "      <td colspan=\"2\"></td>"
120             - "    </tr>"
121             - "    <tr>"
122             - "      <td>Account balance as on date:</td>"
123             - "      <td>[% credit.patron.account.balance * -1 | $Price %]</td>"
124             - "    </tr>"
125             - "  </tfoot>"
126             - "</table>"
127
128         - module: circulation
129           code: ACCOUNT_DEBIT
130           branchcode: ""
131           name: "Account fee"
132           is_html: 1
133           title: "Account fee"
134           message_transport_type: print
135           lang: default
136           content:
137             - "[% USE Price %]"
138             - "[% PROCESS \"accounts.inc\" %]"
139             - "<table>"
140             - "    [% IF ( LibraryName ) %]"
141             - "    <tr>"
142             - "      <th colspan=\"3\" class=\"centerednames\">"
143             - "        <h3>[% LibraryName | html %]</h3>"
144             - "      </th>"
145             - "    </tr>"
146             - "    [% END %]"
147             - "    [% IF debit.library %]"
148             - "    <tr>"
149             - "      <th colspan=\"3\" class=\"centerednames\">"
150             - "        <h2>[% debit.library.branchname | html %]</h2>"
151             - "      </th>"
152             - "    </tr>"
153             - "    [% END %]"
154             - "    <tr>"
155             - "      <th colspan=\"3\" class=\"centerednames\">"
156             - "        <h3>[% debit.date | $KohaDates %]</h3>"
157             - "      </th>"
158             - "    </tr>"
159             - "    <tr>"
160             - "      <td colspan=\"2\" style=\"text-align:right;\">Fee ID: </td>"
161             - "      <td>[% debit.accountlines_id %]</td>"
162             - "    </tr>"
163             - "    [% IF credit.manager_id %]"
164             - "    <tr>"
165             - "      <td colspan=\"2\" style=\"text-align:right;\">Operator ID: </td>"
166             - "      <td>[% credit.manager_id %]</td>"
167             - "    </tr>"
168             - "    [% END %]"
169             - "    <tr>"
170             - "      <th colspan=\"3\" class=\"centerednames\">"
171             - "        <h2><u>Invoice</u></h2>"
172             - "      </th>"
173             - "    </tr>"
174             - "    <tr>"
175             - "      <th colspan=\"3\" >"
176             - "        Bill to: [% debit.patron.firstname | html %] [% debit.patron.surname | html %] <br />"
177             - "        Card number: [% debit.patron.cardnumber | html %]<br />"
178             - "      </th>"
179             - "    </tr>"
180             - "    [% IF debit.amount != debit.amountoutstanding %]"
181             - "    <tr>"
182             - "      <th>Date</th>"
183             - "      <th>Description of payments</th>"
184             - "      <th>Amount</th>"
185             - "    </tr>"
186             - "    [% FOREACH offset IN debit.debit_offsets %]"
187             - "    <tr>"
188             - "      <td>[% offset.credit.date | $KohaDates %]</td>"
189             - "      <td>[% PROCESS account_type_description account=offset.credit %]</td>"
190             - "      <td>[% offset.amount * -1 | $Price %]</td>"
191             - "    </tr>"
192             - "    [% END %]"
193             - "    <tr class=\"highlight\">"
194             - "      <td colspan=\"2\" style=\"text-align:right;\">Total paid:</td>"
195             - "      <td>[% debit.amount - debit.amountoutstanding | $Price %]</td>"
196             - "    </tr>"
197             - "    [% END %]"
198             - "    </tr>"
199             - "      <td colspan=\"3\"></td>"
200             - "    <tr>"
201             - "  <tfoot>"
202             - "    <tr>"
203             - "      <td colspan=\"2\" style=\"text-align:right;\">Total owed:</td>"
204             - "      <td>[% debit.amount | $Price %]</td>"
205             - "    </tr>"
206             - "    <tr>"
207             - "      <td colspan=\"2\" style=\"text-align:right;\">Total outstanding:</td>"
208             - "      <td>[% debit.amountoutstanding | $Price %]</td>"
209             - "    </tr>"
210             - "  </tfoot>"
211             - "</table>"
212
213         - module: circulation
214           code: ACCOUNT_PAYMENT
215           branchcode: ""
216           name: "Account payment"
217           is_html: 0
218           title: "Account payment"
219           message_transport_type: email
220           lang: default
221           content:
222             - "[%- USE Price -%]"
223             - "A payment of [% credit.amount * -1 | $Price %] has been applied to your account."
224             - ""
225             - "This payment affected the following fees:"
226             - "[%- FOREACH o IN offsets %]"
227             - "Description: [% o.debit.description %]"
228             - "Amount paid: [% o.amount * -1 | $Price %]"
229             - "Amount remaining: [% o.debit.amountoutstanding | $Price %]"
230             - "[% END %]"
231
232         - module: circulation
233           code: ACCOUNT_WRITEOFF
234           branchcode: ""
235           name: "Account writeoff"
236           is_html: 0
237           title: "Account writeoff"
238           message_transport_type: email
239           lang: default
240           content:
241             - "[%- USE Price -%]"
242             - "An account writeoff of [% credit.amount * -1 | $Price %] has been applied to your account."
243             - ""
244             - "This writeoff affected the following fees:"
245             - "[%- FOREACH o IN offsets %]"
246             - "Description: [% o.debit.description %]"
247             - "Amount paid: [% o.amount * -1 | $Price %]"
248             - "Amount remaining: [% o.debit.amountoutstanding | $Price %]"
249             - "[% END %]"
250
251         - module: circulation
252           code: AR_CANCELED
253           branchcode: ""
254           name: "Article request - canceled"
255           is_html: 0
256           title: "Article request canceled"
257           message_transport_type: email
258           lang: default
259           content:
260             - "Dear <<borrowers.firstname>> <<borrowers.surname>> (<<borrowers.cardnumber>>),"
261             - ""
262             - "Your request for an article from <<biblio.title>> (<<items.barcode>>) has been canceled for the following reason:"
263             - ""
264             - "<<reason>>"
265             - ""
266             - "Article requested:"
267             - "Title: <<article_requests.title>>"
268             - "Author: <<article_requests.author>>"
269             - "Volume: <<article_requests.volume>>"
270             - "Issue: <<article_requests.issue>>"
271             - "Date: <<article_requests.date>>"
272             - "TOC: [% IF article_request.toc_request %]Yes[% ELSE %]No[% END %]"
273             - "Pages: <<article_requests.pages>>"
274             - "Chapters: <<article_requests.chapters>>"
275             - "Notes: <<article_requests.patron_notes>>"
276             - "Format: [% IF article_request.format == 'PHOTOCOPY' %]Copy[% ELSIF article_request.format == 'SCAN' %]Scan[% END %]"
277             - ""
278             - "Your library"
279
280         - module: circulation
281           code: AR_COMPLETED
282           branchcode: ""
283           name: "Article request - completed"
284           is_html: 0
285           title: "Article request completed"
286           message_transport_type: email
287           lang: default
288           content:
289             - "Dear <<borrowers.firstname>> <<borrowers.surname>> (<<borrowers.cardnumber>>),"
290             - ""
291             - "We have completed your request for an article from <<biblio.title>> (<<items.barcode>>)."
292             - ""
293             - "Article requested:"
294             - "Title: <<article_requests.title>>"
295             - "Author: <<article_requests.author>>"
296             - "Volume: <<article_requests.volume>>"
297             - "Issue: <<article_requests.issue>>"
298             - "Date: <<article_requests.date>>"
299             - "TOC: [% IF article_request.toc_request %]Yes[% ELSE %]No[% END %]"
300             - "Pages: <<article_requests.pages>>"
301             - "Chapters: <<article_requests.chapters>>"
302             - "Notes: <<article_requests.patron_notes>>"
303             - "Format: [% IF article_request.format == 'PHOTOCOPY' %]Copy[% ELSIF article_request.format == 'SCAN' %]Scan[% END %]"
304             - ""
305             - "[% IF article_request.format == 'PHOTOCOPY' %]You may pick up your article at [% branch.branchname %].[% ELSIF article_request.format == 'SCAN' %]You can download the scanned materials via the following URL(s): [% article_request.urls %].[% END %]"
306             - ""
307             - "Thank you!"
308
309         - module: circulation
310           code: AR_PENDING
311           branchcode: ""
312           name: "Article request - pending"
313           is_html: 0
314           title: "Pending article request"
315           message_transport_type: email
316           lang: default
317           content:
318             - "Dear <<borrowers.firstname>> <<borrowers.surname>> (<<borrowers.cardnumber>>)"
319             - ""
320             - "Your request for an article from <<biblio.title>> (<<items.barcode>>) is now in pending state."
321             - ""
322             - "Article requested:"
323             - "Title: <<article_requests.title>>"
324             - "Author: <<article_requests.author>>"
325             - "Volume: <<article_requests.volume>>"
326             - "Issue: <<article_requests.issue>>"
327             - "Date: <<article_requests.date>>"
328             - "TOC: [% IF article_request.toc_request %]Yes[% ELSE %]No[% END %]"
329             - "Pages: <<article_requests.pages>>"
330             - "Chapters: <<article_requests.chapters>>"
331             - "Notes: <<article_requests.patron_notes>>"
332             - ""
333             - ""
334             - "Thank you!"
335
336         - module: circulation
337           code: AR_REQUESTED
338           branchcode: ""
339           name: "Article request - new"
340           is_html: 0
341           title: "Article request received"
342           message_transport_type: email
343           lang: default
344           content:
345             - "Dear <<borrowers.firstname>> <<borrowers.surname>> (<<borrowers.cardnumber>>)"
346             - ""
347             - "We have received your request for an article from <<biblio.title>> (<<items.barcode>>)."
348             - ""
349             - "Article requested:"
350             - "Title: <<article_requests.title>>"
351             - "Author: <<article_requests.author>>"
352             - "Volume: <<article_requests.volume>>"
353             - "Issue: <<article_requests.issue>>"
354             - "Date: <<article_requests.date>>"
355             - "TOC: [% IF article_request.toc_request %]Yes[% ELSE %]No[% END %]"
356             - "Pages: <<article_requests.pages>>"
357             - "Chapters: <<article_requests.chapters>>"
358             - "Notes: <<article_requests.patron_notes>>"
359             - "Format: [% IF article_request.format == 'PHOTOCOPY' %]Copy[% ELSIF article_request.format == 'SCAN' %]Scan[% END %]"
360             - ""
361             - "Thank you!"
362
363         - module: circulation
364           code: AR_PROCESSING
365           branchcode: ""
366           name: "Article request - processing"
367           is_html: 0
368           title: "Article request processing"
369           message_transport_type: email
370           lang: default
371           content:
372             - "Dear <<borrowers.firstname>> <<borrowers.surname>> (<<borrowers.cardnumber>>),"
373             - ""
374             - "We are now processing your request for an article from <<biblio.title>> (<<items.barcode>>)."
375             - ""
376             - "Article requested:"
377             - "Title: <<article_requests.title>>"
378             - "Author: <<article_requests.author>>"
379             - "Volume: <<article_requests.volume>>"
380             - "Issue: <<article_requests.issue>>"
381             - "Date: <<article_requests.date>>"
382             - "TOC: [% IF article_request.toc_request %]Yes[% ELSE %]No[% END %]"
383             - "Pages: <<article_requests.pages>>"
384             - "Chapters: <<article_requests.chapters>>"
385             - "Notes: <<article_requests.patron_notes>>"
386             - "Format: [% IF article_request.format == 'PHOTOCOPY' %]Copy[% ELSIF article_request.format == 'SCAN' %]Scan[% END %]"
387             - ""
388             - "Thank you!"
389
390         - module: circulation
391           code: AR_SLIP
392           branchcode: ""
393           name: "Article request - print slip"
394           is_html: 0
395           title: "Article request"
396           message_transport_type: print
397           lang: default
398           content:
399             - "Article request:"
400             - ""
401             - "<<borrowers.firstname>> <<borrowers.surname>> (<<borrowers.cardnumber>>),"
402             - ""
403             - "Title: <<biblio.title>>"
404             - "Barcode: <<items.barcode>>"
405             - ""
406             - "Article requested:"
407             - "Title: <<article_requests.title>>"
408             - "Author: <<article_requests.author>>"
409             - "Volume: <<article_requests.volume>>"
410             - "Issue: <<article_requests.issue>>"
411             - "Date: <<article_requests.date>>"
412             - "TOC: [% IF article_request.toc_request %]Yes[% ELSE %]No[% END %]"
413             - "Pages: <<article_requests.pages>>"
414             - "Chapters: <<article_requests.chapters>>"
415             - "Notes: <<article_requests.patron_notes>>"
416             - "Format: [% IF article_request.format == 'PHOTOCOPY' %]Copy[% ELSIF article_request.format == 'SCAN' %]Scan[% END %]"
417             - ""
418
419         - module: circulation
420           code: CHECKIN
421           branchcode: ""
422           name: "Item check-in (digest)"
423           is_html: 0
424           title: "Check-ins"
425           message_transport_type: email
426           lang: default
427           content:
428             - "The following items have been checked in:"
429             - "----"
430             - "[% biblio.title %]"
431             - "----"
432             - "Thank you."
433
434         - module: circulation
435           code: CHECKOUT
436           branchcode: ""
437           name: "Item check-out (digest)"
438           is_html: 0
439           title: "Checkouts"
440           message_transport_type: email
441           lang: default
442           content:
443             - "The following items have been checked out:"
444             - "----"
445             - "[% biblio.title %]"
446             - "----"
447             - "Thank you for visiting [% branch.branchname %]."
448
449         - module: circulation
450           code: CHECKOUT_NOTE
451           branchcode: ""
452           name: "Checkout note on item set by patron"
453           is_html: 0
454           title: "Checkout note"
455           message_transport_type: email
456           lang: default
457           content:
458             - "<<borrowers.firstname>> <<borrowers.surname>> has added a note to the item <<biblio.title>> - <<biblio.author>> (<<biblio.biblionumber>>)."
459
460         - module: circulation
461           code: DUE
462           branchcode: ""
463           name: "Item due reminder"
464           is_html: 0
465           title: "Item due reminder"
466           message_transport_type: email
467           lang: default
468           content:
469             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
470             - ""
471             - "The following item is now due:"
472             - ""
473             - "<<biblio.title>>, <<biblio.author>> (<<items.barcode>>)"
474
475         - module: circulation
476           code: DUEDGST
477           branchcode: ""
478           name: "Item due reminder (digest)"
479           is_html: 0
480           title: "Item due reminder"
481           message_transport_type: email
482           lang: default
483           content:
484             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
485             - ""
486             - "The following item(s) are now due:"
487             - ""
488             - "<<items.content>>"
489             - ""
490             - "Thank you."
491
492         - module: circulation
493           code: HOLD_SLIP
494           branchcode: ""
495           name: "Hold slip"
496           is_html: 1
497           title: "Hold slip"
498           message_transport_type: email
499           lang: default
500           content:
501             - "<h5>Date: <<today>></h5>"
502             - ""
503             - "<h3> Transfer to/Hold in <<branches.branchname>></h3>"
504             - ""
505             - "<h3><<borrowers.surname>>, <<borrowers.firstname>></h3>"
506             - ""
507             - "<ul>"
508             - "    <li><<borrowers.cardnumber>></li>"
509             - "    <li><<borrowers.phone>></li>"
510             - "    <li> <<borrowers.address>><br />"
511             - "         <<borrowers.address2>><br />"
512             - "         <<borrowers.city >>  <<borrowers.zipcode>>"
513             - "    </li>"
514             - "    <li><<borrowers.email>></li>"
515             - "</ul>"
516             - "<br />"
517             - "<h3>ITEM ON HOLD</h3>"
518             - "<h4><<biblio.title>></h4>"
519             - "<h5><<biblio.author>></h5>"
520             - "<ul>"
521             - "   <li><<items.barcode>></li>"
522             - "   <li><<items.itemcallnumber>></li>"
523             - "   <li><<reserves.waitingdate>></li>"
524             - "</ul>"
525             - "<p>Notes:"
526             - "<pre><<reserves.reservenotes>></pre>"
527             - "</p>"
528             - ""
529
530         - module: circulation
531           code: ISSUEQSLIP
532           branchcode: ""
533           name: "Issue quick slip"
534           is_html: 1
535           title: "Issue quick slip"
536           message_transport_type: email
537           lang: default
538           content:
539             - "<h3><<branches.branchname>></h3>"
540             - "Checked out to <<borrowers.title>> <<borrowers.firstname>> <<borrowers.initials>> <<borrowers.surname>> <br />"
541             - "(<<borrowers.cardnumber>>) <br />"
542             - ""
543             - "<<today>><br />"
544             - ""
545             - "<h4>Checked out today</h4>"
546             - "<checkedout>"
547             - "<p>"
548             - "<<biblio.title>> <br />"
549             - "Barcode: <<items.barcode>><br />"
550             - "Date due: <<issues.date_due>><br />"
551             - "</p>"
552             - "</checkedout>"
553
554         - module: circulation
555           code: ISSUESLIP
556           branchcode: ""
557           name: "Issue slip"
558           is_html: 1
559           title: "Issue slip"
560           message_transport_type: email
561           lang: default
562           content:
563             - "<h3><<branches.branchname>></h3>"
564             - "Checked out to <<borrowers.title>> <<borrowers.firstname>> <<borrowers.initials>> <<borrowers.surname>> <br />"
565             - "(<<borrowers.cardnumber>>) <br />"
566             - ""
567             - "<<today>><br />"
568             - ""
569             - "<h4>Checked out</h4>"
570             - "<checkedout>"
571             - "<p>"
572             - "<<biblio.title>> <br />"
573             - "Barcode: <<items.barcode>><br />"
574             - "Date due: <<issues.date_due>><br />"
575             - "</p>"
576             - "</checkedout>"
577             - ""
578             - "<h4>Overdues</h4>"
579             - "<overdue>"
580             - "<p>"
581             - "<<biblio.title>> <br />"
582             - "Barcode: <<items.barcode>><br />"
583             - "Date due: <<issues.date_due>><br />"
584             - "</p>"
585             - "</overdue>"
586             - ""
587             - "<hr>"
588             - ""
589             - "<h4 style=\"text-align: center; font-style:italic;\">News</h4>"
590             - "<news>"
591             - "<div class=\"newsitem\">"
592             - "<h5 style=\"margin-bottom: 1px; margin-top: 1px\"><b><<additional_contents.title>></b></h5>"
593             - "<p style=\"margin-bottom: 1px; margin-top: 1px\"><<additional_contents.content>></p>"
594             - "<p class=\"newsfooter\" style=\"font-size: 8pt; font-style:italic; margin-bottom: 1px; margin-top: 1px\">Posted on <<additional_contents.published_on>></p>"
595             - "<hr />"
596             - "</div>"
597             - "</news>"
598
599         - module: circulation
600           code: ODUE
601           branchcode: ""
602           name: "Overdue notice"
603           is_html: 0
604           title: "Item overdue"
605           message_transport_type: email
606           lang: default
607           content:
608             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
609             - ""
610             - "According to our current records, you have items that are overdue.Your library does not charge late fines, but please return or renew them at the branch below as soon as possible."
611             - ""
612             - "<<branches.branchname>>"
613             - "<<branches.branchaddress1>>"
614             - "<<branches.branchaddress2>> <<branches.branchaddress3>>"
615             - "Phone: <<branches.branchphone>>"
616             - "Fax: <<branches.branchfax>>"
617             - "Email: <<branches.branchemail>>"
618             - ""
619             - "If you have registered a password with the library, and you have a renewal available, you may renew online. If an item becomes more than 30 days overdue, you will be unable to use your library card until the item is returned."
620             - ""
621             - "The following item(s) is/are currently overdue:"
622             - ""
623             - "<item>\"<<biblio.title>>\" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item>"
624             - ""
625             - "Thank-you for your prompt attention to this matter."
626             - ""
627             - "<<branches.branchname>> Staff"
628             - ""
629
630         - module: circulation
631           code: OVERDUES_SLIP
632           branchcode: ""
633           name: "Overdues slip"
634           is_html: 0
635           title: "Overdues slip"
636           message_transport_type: print
637           lang: default
638           content:
639             - "The following item(s) is/are currently overdue:"
640             - ""
641             - "<item>\"<<biblio.title>>\" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item>"
642             - ""
643
644         - module: circulation
645           code: PREDUE
646           branchcode: ""
647           name: "Advance notice of item due"
648           is_html: 0
649           title: "Advance notice of item due"
650           message_transport_type: email
651           lang: default
652           content:
653             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
654             - ""
655             - "The following item will be due soon:"
656             - ""
657             - "<<biblio.title>>, <<biblio.author>> (<<items.barcode>>)"
658
659         - module: circulation
660           code: PREDUEDGST
661           branchcode: ""
662           name: "Advance notice of item due (digest)"
663           is_html: 0
664           title: "Advance notice of item due"
665           message_transport_type: email
666           lang: default
667           content:
668             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
669             - ""
670             - "The following item(s) will be due soon:"
671             - ""
672             - "<<items.content>>"
673             - ""
674             - "Thank you."
675
676         - module: circulation
677           code: RENEWAL
678           branchcode: ""
679           name: "Item renewals"
680           is_html: 0
681           title: "Item renewals"
682           message_transport_type: email
683           lang: default
684           content:
685             - "The following items have been renewed:"
686             - "----"
687             - "<<biblio.title>>"
688             - "----"
689             - "Thank you for visiting <<branches.branchname>>."
690
691         - module: circulation
692           code: SR_SLIP
693           branchcode: ""
694           name: "Stock rotation slip"
695           is_html: 0
696           title: "Stock rotation report"
697           message_transport_type: email
698           lang: default
699           content:
700             - "Stock rotation report for [% branch.name %]:"
701             - ""
702             - "[% IF branch.items.size %][% branch.items.size %] items to be processed for this branch."
703             - "[% ELSE %]No items to be processed for this branch"
704             - "[% END %][% FOREACH item IN branch.items %][% IF item.reason != 'in-demand' %]Title: [% item.title %]"
705             - "Author: [% item.author %]"
706             - "Call number: [% item.callnumber %]"
707             - "Location: [% item.location %]"
708             - "Barcode: [% item.barcode %]"
709             - "On loan?: [% item.onloan %]"
710             - "Status: [% item.reason %]"
711             - "Current library: [% item.branch.branchname %] [% item.branch.branchcode %]"
712             - ""
713             - "[% END %][% END %]"
714
715         - module: circulation
716           code: TRANSFERSLIP
717           branchcode: ""
718           name: "Transfer slip"
719           is_html: 1
720           title: "Transfer slip"
721           message_transport_type: email
722           lang: default
723           content:
724             - "<h5>Date: <<today>></h5>"
725             - ""
726             - "<h3>Transfer to <<branches.branchname>></h3>"
727             - ""
728             - "<h3>ITEM</h3>"
729             - "<h4><<biblio.title>></h4>"
730             - "<h5><<biblio.author>></h5>"
731             - "<ul>"
732             - "   <li><<items.barcode>></li>"
733             - "   <li><<items.itemcallnumber>></li>"
734             - "</ul>"
735
736         - module: claimacquisition
737           code: ACQCLAIM
738           branchcode: ""
739           name: "Acquisition claim"
740           is_html: 0
741           title: "Item not received"
742           message_transport_type: email
743           lang: default
744           content:
745             - "<<aqbooksellers.name>>"
746             - "<<aqbooksellers.address1>>"
747             - "<<aqbooksellers.address2>>"
748             - "<<aqbooksellers.address3>>"
749             - "<<aqbooksellers.address4>>"
750             - "<<aqbooksellers.phone>>"
751             - ""
752             - "<order>Ordernumber <<aqorders.ordernumber>> (<<biblio.title>>) (<<aqorders.quantity>> ordered) ($<<aqorders.listprice>> each) has not been received.</order>"
753
754         - module: ill
755           code: ILL_PICKUP_READY
756           branchcode: ""
757           name: "ILL request ready for pickup"
758           is_html: 0
759           title: "Interlibrary loan request ready for pickup"
760           message_transport_type: email
761           lang: default
762           content:
763             - "Dear [% borrower.firstname %] [% borrower.surname %],"
764             - ""
765             - "The Interlibrary loans request number [% illrequest.illrequest_id %] you placed for:"
766             - ""
767             - "- [% ill_bib_title %] - [% ill_bib_author %]"
768             - ""
769             - "is ready for pick up from [% branch.branchname %]."
770             - ""
771             - "Kind regards"
772             - ""
773             - "[% branch.branchname %]"
774             - "[% branch.branchaddress1 %]"
775             - "[% branch.branchaddress2 %]"
776             - "[% branch.branchaddress3 %]"
777             - "[% branch.branchcity %]"
778             - "[% branch.branchstate %]"
779             - "[% branch.branchzip %]"
780             - "[% branch.branchphone %]"
781             - "[% branch.branchillemail %]"
782             - "[% branch.branchemail %]"
783
784         - module: ill
785           code: ILL_REQUEST_UNAVAIL
786           branchcode: ""
787           name: "ILL request unavailable"
788           is_html: 0
789           title: "Interlibrary loan request unavailable"
790           message_transport_type: email
791           lang: default
792           content:
793             - "Dear [% borrower.firstname %] [% borrower.surname %],"
794             - ""
795             - "The Interlibrary loans request number [% illrequest.illrequest_id %] you placed for"
796             - ""
797             - "- [% ill_bib_title %] - [% ill_bib_author %]"
798             - ""
799             - "is unfortunately unavailable."
800             - ""
801             - "Kind regards"
802             - ""
803             - "[% branch.branchname %]"
804             - "[% branch.branchaddress1 %]"
805             - "[% branch.branchaddress2 %]"
806             - "[% branch.branchaddress3 %]"
807             - "[% branch.branchcity %]"
808             - "[% branch.branchstate %]"
809             - "[% branch.branchzip %]"
810             - "[% branch.branchphone %]"
811             - "[% branch.branchillemail %]"
812             - "[% branch.branchemail %]"
813
814         - module: ill
815           code: ILL_REQUEST_CANCEL
816           branchcode: ""
817           name: "ILL request cancelled"
818           is_html: 0
819           title: "Interlibrary loan request cancelled"
820           message_transport_type: email
821           lang: default
822           content:
823             - "The patron for interlibrary loans request [% illrequest.illrequest_id %], with the following details, has requested cancellation of this ILL request:"
824             - ""
825             - "[% ill_full_metadata %]"
826
827         - module: ill
828           code: ILL_REQUEST_MODIFIED
829           branchcode: ""
830           name: "ILL request modified"
831           is_html: 0
832           title: "Interlibrary loan request modified"
833           message_transport_type: email
834           lang: default
835           content:
836             - "The patron for interlibrary loans request [% illrequest.illrequest_id %], with the following details, has modified this ILL request:"
837             - ""
838             - "[% ill_full_metadata %]"
839
840         - module: ill
841           code: ILL_PARTNER_REQ
842           branchcode: ""
843           name: "ILL request to partners"
844           is_html: 0
845           title: "Interlibrary loan request to partners"
846           message_transport_type: email
847           lang: default
848           content:
849             - "Dear Sir/Madam,"
850             - ""
851             - "We would like to request an interlibrary loan for a title matching the following description:"
852             - ""
853             - "[% ill_full_metadata %]"
854             - ""
855             - "Please let us know if you are able to supply this to us."
856             - ""
857             - "Kind regards"
858             - ""
859             - "[% branch.branchname %]"
860             - "[% branch.branchaddress1 %]"
861             - "[% branch.branchaddress2 %]"
862             - "[% branch.branchaddress3 %]"
863             - "[% branch.branchcity %]"
864             - "[% branch.branchstate %]"
865             - "[% branch.branchzip %]"
866             - "[% branch.branchphone %]"
867             - "[% branch.branchillemail %]"
868             - "[% branch.branchemail %]"
869
870         - module: ill
871           code: ILL_REQUEST_UPDATE
872           branchcode: ""
873           name: "ILL request update"
874           is_html: 0
875           title: "Interlibrary loan request update"
876           message_transport_type: email
877           lang: default
878           content:
879             - "Dear [% borrower.firstname %] [% borrower.surname %],"
880             - ""
881             - "The Interlibrary loans request number [% illrequest.illrequest_id %] you placed for"
882             - ""
883             - "- [% ill_bib_title %] - [% ill_bib_author %]"
884             - ""
885             - "has been updated."
886             - ""
887             - "Details of the update are below:"
888             - ""
889             - "[% additional_text %]"
890             - ""
891             - "Kind regards"
892             - ""
893             - "[% branch.branchname %]"
894             - "[% branch.branchaddress1 %]"
895             - "[% branch.branchaddress2 %]"
896             - "[% branch.branchaddress3 %]"
897             - "[% branch.branchcity %]"
898             - "[% branch.branchstate %]"
899             - "[% branch.branchzip %]"
900             - "[% branch.branchphone %]"
901             - "[% branch.branchillemail %]"
902             - "[% branch.branchemail %]"
903
904         - module: ill
905           code: ILL_PICKUP_READY
906           branchcode: ""
907           name: "ILL request ready for pickup"
908           is_html: 0
909           title: "Interlibrary loan request ready for pickup"
910           message_transport_type: sms
911           lang: default
912           content:
913             - "Dear [% borrower.firstname %] [% borrower.surname %],"
914             - ""
915             - "The Interlibrary loans request number [% illrequest.illrequest_id %] you placed for:"
916             - ""
917             - "- [% ill_bib_title %] - [% ill_bib_author %]"
918             - ""
919             - "is ready for pick up from [% branch.branchname %]."
920             - ""
921             - "Kind regards"
922             - ""
923             - "[% branch.branchname %]"
924             - "[% branch.branchaddress1 %]"
925             - "[% branch.branchaddress2 %]"
926             - "[% branch.branchaddress3 %]"
927             - "[% branch.branchcity %]"
928             - "[% branch.branchstate %]"
929             - "[% branch.branchzip %]"
930             - "[% branch.branchphone %]"
931             - "[% branch.branchillemail %]"
932             - "[% branch.branchemail %]"
933
934         - module: ill
935           code: ILL_REQUEST_UNAVAIL
936           branchcode: ""
937           name: "ILL request unavailable"
938           is_html: 0
939           title: "Interlibrary loan request unavailable"
940           message_transport_type: sms
941           lang: default
942           content:
943             - "Dear [% borrower.firstname %] [% borrower.surname %],"
944             - ""
945             - "The Interlibrary loans request number [% illrequest.illrequest_id %] you placed for"
946             - ""
947             - "- [% ill_bib_title %] - [% ill_bib_author %]"
948             - ""
949             - "is unfortunately unavailable."
950             - ""
951             - "Kind regards"
952             - ""
953             - "[% branch.branchname %]"
954             - "[% branch.branchaddress1 %]"
955             - "[% branch.branchaddress2 %]"
956             - "[% branch.branchaddress3 %]"
957             - "[% branch.branchcity %]"
958             - "[% branch.branchstate %]"
959             - "[% branch.branchzip %]"
960             - "[% branch.branchphone %]"
961             - "[% branch.branchillemail %]"
962             - "[% branch.branchemail %]"
963
964         - module: ill
965           code: ILL_REQUEST_CANCEL
966           branchcode: ""
967           name: "ILL request cancelled"
968           is_html: 0
969           title: "Interlibrary loan request cancelled"
970           message_transport_type: sms
971           lang: default
972           content:
973             - "The patron for interlibrary loans request [% illrequest.illrequest_id %], with the following details, has requested cancellation of this ILL request:"
974             - ""
975             - "[% ill_full_metadata %]"
976
977         - module: ill
978           code: ILL_REQUEST_MODIFIED
979           branchcode: ""
980           name: "ILL request modified"
981           is_html: 0
982           title: "Interlibrary loan request modified"
983           message_transport_type: sms
984           lang: default
985           content:
986             - "The patron for interlibrary loans request [% illrequest.illrequest_id %], with the following details, has modified this ILL request:"
987             - ""
988             - "[% ill_full_metadata %]"
989
990         - module: ill
991           code: ILL_PARTNER_REQ
992           branchcode: ""
993           name: "ILL request to partners"
994           is_html: 0
995           title: "Interlibrary loan request to partners"
996           message_transport_type: sms
997           lang: default
998           content:
999             - "Dear Sir/Madam,"
1000             - ""
1001             - "We would like to request an interlibrary loan for a title matching the following description:"
1002             - ""
1003             - "[% ill_full_metadata %]"
1004             - ""
1005             - "Please let us know if you are able to supply this to us."
1006             - ""
1007             - "Kind regards"
1008             - ""
1009             - "[% branch.branchname %]"
1010             - "[% branch.branchaddress1 %]"
1011             - "[% branch.branchaddress2 %]"
1012             - "[% branch.branchaddress3 %]"
1013             - "[% branch.branchcity %]"
1014             - "[% branch.branchstate %]"
1015             - "[% branch.branchzip %]"
1016             - "[% branch.branchphone %]"
1017             - "[% branch.branchillemail %]"
1018             - "[% branch.branchemail %]"
1019
1020         - module: ill
1021           code: ILL_REQUEST_UPDATE
1022           branchcode: ""
1023           name: "ILL request update"
1024           is_html: 0
1025           title: "Interlibrary loan request update"
1026           message_transport_type: sms
1027           lang: default
1028           content:
1029             - "Dear [% borrower.firstname %] [% borrower.surname %],"
1030             - ""
1031             - "The Interlibrary loans request number [% illrequest.illrequest_id %] you placed for"
1032             - ""
1033             - "- [% ill_bib_title %] - [% ill_bib_author %]"
1034             - ""
1035             - "has been updated."
1036             - ""
1037             - "Details of the update are below:"
1038             - ""
1039             - "[% additional_text %]"
1040             - ""
1041             - "Kind regards"
1042             - ""
1043             - "[% branch.branchname %]"
1044             - "[% branch.branchaddress1 %]"
1045             - "[% branch.branchaddress2 %]"
1046             - "[% branch.branchaddress3 %]"
1047             - "[% branch.branchcity %]"
1048             - "[% branch.branchstate %]"
1049             - "[% branch.branchzip %]"
1050             - "[% branch.branchphone %]"
1051             - "[% branch.branchillemail %]"
1052             - "[% branch.branchemail %]"
1053
1054         - module: members
1055           code: DISCHARGE
1056           branchcode: ""
1057           name: "Discharge confirmation"
1058           is_html: 1
1059           title: "Discharge for <<borrowers.firstname>> <<borrowers.surname>>"
1060           message_transport_type: email
1061           lang: default
1062           content:
1063             - ""
1064             - "<<today>>"
1065             - "<h1>Discharge confirmation</h1>"
1066             - "<p><<branches.branchname>> certifies that the following borrower:<br>"
1067             - "<<borrowers.firstname>> <<borrowers.surname>> (cardnumber: <<borrowers.cardnumber>>)<br>"
1068             - "has returned all items.</p>"
1069
1070         - module: members
1071           code: MEMBERSHIP_EXPIRY
1072           branchcode: ""
1073           name: "Account expiration"
1074           is_html: 0
1075           title: "Account expiration"
1076           message_transport_type: email
1077           lang: default
1078           content:
1079             - "Dear <<borrowers.title>> <<borrowers.firstname>> <<borrowers.surname>>,"
1080             - ""
1081             - "Your library card will expire soon, on:"
1082             - ""
1083             - "<<borrowers.dateexpiry>>"
1084             - ""
1085             - "Thank you,"
1086             - ""
1087             - "Librarian"
1088             - ""
1089             - "<<branches.branchname>>"
1090
1091         - module: members
1092           code: OPAC_REG_VERIFY
1093           branchcode: ""
1094           name: "OPAC self-registration verification email"
1095           is_html: 1
1096           title: "Verify your account"
1097           message_transport_type: email
1098           lang: default
1099           content:
1100             - "Hello!"
1101             - ""
1102             - "Your library account has been created. Please verify your email address by clicking this link to complete the signup process:"
1103             - ""
1104             - "<<OPACBaseURL>>/cgi-bin/koha/opac-registration-verify.pl?token=<<borrower_modifications.verification_token>>"
1105             - ""
1106             - "If you did not initiate this request, you may safely ignore this one-time message. The request will expire shortly."
1107
1108         - module: members
1109           code: PASSWORD_CHANGE
1110           branchcode: ""
1111           name: "Notification of password change"
1112           is_html: 1
1113           title: "Library account password change notification for [% patron.firstname %] [% patron.surname %]"
1114           message_transport_type: email
1115           lang: default
1116           content:
1117             - "Dear [% patron.firstname %] [% patron.surname %],"
1118             - ""
1119             - "We want to notify you that your password has been changed. If you did not change it yourself (or requested that change), please contact library staff."
1120             - ""
1121             - "Your library."
1122
1123         - module: members
1124           code: PASSWORD_RESET
1125           branchcode: ""
1126           name: "Online password reset"
1127           is_html: 1
1128           title: "Koha password recovery"
1129           message_transport_type: email
1130           lang: default
1131           content:
1132             - "<html>"
1133             - "<p>This email has been sent in response to your password recovery request for the account <strong><<user>></strong>."
1134             - "</p>"
1135             - "<p>"
1136             - "You can now create your new password using the following link:"
1137             - "<br/><a href=\"<<passwordreseturl>>\"><<passwordreseturl>></a>"
1138             - "</p>"
1139             - "<p>This link will be valid for 2 days from this email's reception, then you must reapply if you do not change your password.</p>"
1140             - "<p>Thank you.</p>"
1141             - "</html>"
1142             - ""
1143
1144         - module: members
1145           code: STAFF_PASSWORD_RESET
1146           branchcode: ""
1147           name: "Online password reset"
1148           is_html: 1
1149           title: "Koha password reset"
1150           message_transport_type: email
1151           lang: default
1152           content:
1153             - "<html>"
1154             - "<p>A librarian has reset the password for the account <strong><<user>></strong>."
1155             - "</p>"
1156             - "<p>"
1157             - "Please create your new password using the following link:"
1158             - "<br/><a href=\"<<passwordreseturl>>\"><<passwordreseturl>></a>"
1159             - "</p>"
1160             - "<p>This link will be valid for 5 days from this email's reception, then you must reapply if you do not change your password.</p>"
1161             - "<p>Thank you.</p>"
1162             - "</html>"
1163             - ""
1164
1165         - module: members
1166           code: SHARE_ACCEPT
1167           branchcode: ""
1168           name: "Notification about an accepted share"
1169           is_html: 0
1170           title: "Share on list <<listname>> accepted"
1171           message_transport_type: email
1172           lang: default
1173           content:
1174             - "Dear patron,"
1175             - ""
1176             - "We want to inform you that <<borrowers.firstname>> <<borrowers.surname>> accepted your invitation to share your list <<listname>> in our library catalog."
1177             - ""
1178             - "Thank you."
1179             - ""
1180             - "Your library."
1181
1182         - module: members
1183           code: SHARE_INVITE
1184           branchcode: ""
1185           name: "Invitation for sharing a list"
1186           is_html: 0
1187           title: "Share list <<listname>>"
1188           message_transport_type: email
1189           lang: default
1190           content:
1191             - "Dear patron,"
1192             - ""
1193             - "One of our patrons, <<borrowers.firstname>> <<borrowers.surname>>, invites you to share a list <<listname>> in our library catalog."
1194             - ""
1195             - "To access this shared list, please click on the following URL or copy-and-paste it into your browser address bar."
1196             - ""
1197             - "<<shareurl>>"
1198             - ""
1199             - "In case you are not a patron in our library or do not want to accept this invitation, please ignore this mail. Note also that this invitation expires within two weeks."
1200             - ""
1201             - "Thank you."
1202             - ""
1203             - "Your library."
1204
1205         - module: members
1206           code: WELCOME
1207           branchcode: ""
1208           name: "Welcome notice "
1209           is_html: 1
1210           title: "[% USE Koha %][% IF Koha.Preference('LibraryName') %]Welcome to [% Koha.Preference('LibraryName') %][% ELSE %]Welcome to the library[% END %]"
1211           message_transport_type: email
1212           lang: default
1213           content:
1214             - "[% USE Koha %]"
1215             - "Hello [% borrower.title %] [% borrower.firstname %] [% borrower.surname %]."
1216             - ""
1217             - "Thank you for joining [% IF Koha.Preference('LibraryName') %][% Koha.Preference('LibraryName') %][% ELSE %]the library[% END %]"
1218             - ""
1219             - "You can search for all our materials in our <a href='[% Koha.Preference('OPACBaseURL') %]'>catalog</a>."
1220             - ""
1221             - "Your library card number is [% borrower.cardnumber %]"
1222             - ""
1223             - "If you have any problems or questions regarding your account, please contact the library."
1224
1225         - module: members
1226           code: 2FA_OTP_TOKEN
1227           branchcode: ""
1228           name: "two-authentication step token"
1229           is_html: 1
1230           title: "Two-authentication token"
1231           message_transport_type: email
1232           lang: default
1233           content:
1234             - "Dear [% borrower.firstname %] [% borrower.surname %] ([% borrower.cardnumber %])"
1235             - ""
1236             - "Your authentication token is [% otp_token %]."
1237             - "It is valid one minute."
1238
1239         - module: orderacquisition
1240           code: ACQORDER
1241           branchcode: ""
1242           name: "Acquisition order"
1243           is_html: 0
1244           title: "Order"
1245           message_transport_type: email
1246           lang: default
1247           content:
1248             - "<<aqbooksellers.name>>"
1249             - "<<aqbooksellers.address1>>"
1250             - "<<aqbooksellers.address2>>"
1251             - "<<aqbooksellers.address3>>"
1252             - "<<aqbooksellers.address4>>"
1253             - "<<aqbooksellers.phone>>"
1254             - ""
1255             - "Please order for the library:"
1256             - ""
1257             - "<order>Ordernumber <<aqorders.ordernumber>> (<<biblio.title>>) (quantity: <<aqorders.quantity>>) ($<<aqorders.listprice>> each).</order>"
1258             - ""
1259             - "Thank you,"
1260             - ""
1261             - "<<branches.branchname>>"
1262
1263         - module: pos
1264           code: RECEIPT
1265           branchcode: ""
1266           name: "Point of sale receipt"
1267           is_html: 1
1268           title: "Receipt"
1269           message_transport_type: print
1270           lang: default
1271           content:
1272             - "[% USE KohaDates %]"
1273             - "[% USE Branches %]"
1274             - "[% USE Price %]"
1275             - "[% PROCESS \"accounts.inc\" %]"
1276             - "<table>"
1277             - "[% IF ( LibraryName ) %]"
1278             - " <tr>"
1279             - "    <th colspan=\"2\" class=\"centerednames\">"
1280             - "        <h3>[% LibraryName | html %]</h3>"
1281             - "    </th>"
1282             - " </tr>"
1283             - "[% END %]"
1284             - " <tr>"
1285             - "    <th colspan=\"2\" class=\"centerednames\">"
1286             - "        <h2>[% Branches.GetName( credit.branchcode ) | html %]</h2>"
1287             - "    </th>"
1288             - " </tr>"
1289             - "<tr>"
1290             - "    <th colspan=\"2\" class=\"centerednames\">"
1291             - "        <h3>[% credit.date | $KohaDates %]</h3>"
1292             - "</tr>"
1293             - "<tr>"
1294             - "  <td>Transaction ID: </td>"
1295             - "  <td>[% credit.accountlines_id %]</td>"
1296             - "</tr>"
1297             - "<tr>"
1298             - "  <td>Operator ID: </td>"
1299             - "  <td>[% credit.manager_id %]</td>"
1300             - "</tr>"
1301             - "<tr>"
1302             - "  <td>Payment type: </td>"
1303             - "  <td>[% credit.payment_type %]</td>"
1304             - "</tr>"
1305             - " <tr></tr>"
1306             - " <tr>"
1307             - "    <th colspan=\"2\" class=\"centerednames\">"
1308             - "        <h2><u>Fee receipt</u></h2>"
1309             - "    </th>"
1310             - " </tr>"
1311             - " <tr></tr>"
1312             - " <tr>"
1313             - "    <th>Description of charges</th>"
1314             - "    <th>Amount</th>"
1315             - "  </tr>"
1316             - ""
1317             - "  [% FOREACH debit IN credit.debits %]"
1318             - "    <tr>"
1319             - "        <td>[% PROCESS account_type_description account=debit %]</td>"
1320             - "        <td>[% debit.amount * -1 | $Price %]</td>"
1321             - "    </tr>"
1322             - "  [% END %]"
1323             - ""
1324             - "<tfoot>"
1325             - "  <tr class=\"highlight\">"
1326             - "    <td>Total: </td>"
1327             - "    <td>[% credit.amount * -1| $Price %]</td>"
1328             - "  </tr>"
1329             - "  <tr>"
1330             - "    <td>Tendered: </td>"
1331             - "    <td>[% collected | $Price %]</td>"
1332             - "  </tr>"
1333             - "  <tr>"
1334             - "    <td>Change: </td>"
1335             - "    <td>[% change | $Price %]</td>"
1336             - "    </tr>"
1337             - "</tfoot>"
1338             - "</table>"
1339
1340         - module: pos
1341           code: RECEIPT
1342           branchcode: ""
1343           name: "Point of sale receipt"
1344           is_html: 1
1345           title: "Receipt"
1346           message_transport_type: email
1347           lang: default
1348           content:
1349             - "[% USE KohaDates %]"
1350             - "[% USE Branches %]"
1351             - "[% USE Price %]"
1352             - "[% PROCESS \"accounts.inc\" %]"
1353             - "<table>"
1354             - "    [% IF ( LibraryName ) %]"
1355             - "    <tr>"
1356             - "      <th colspan=\"2\" class=\"centerednames\">"
1357             - "        <h3>[% LibraryName | html %]</h3>"
1358             - "      </th>"
1359             - "    </tr>"
1360             - "    [% END %]"
1361             - "    [% IF credit.library %]"
1362             - "    <tr>"
1363             - "      <th colspan=\"2\" class=\"centerednames\">"
1364             - "        <h2>[% payment.library.branchname ) | html %]</h2>"
1365             - "      </th>"
1366             - "    </tr>"
1367             - "    [% END %]"
1368             - "    <tr>"
1369             - "      <th colspan=\"2\" class=\"centerednames\">"
1370             - "        <h3>[% payment.date | $KohaDates %]</h3>"
1371             - "      </th>"
1372             - "    </tr>"
1373             - "    <tr>"
1374             - "      <td>Transaction ID: </td>"
1375             - "      <td>[% payment.accountlines_id %]</td>"
1376             - "    </tr>"
1377             - "    <tr>"
1378             - "      <td>Operator ID: </td>"
1379             - "      <td>[% payment.manager_id %]</td>"
1380             - "    </tr>"
1381             - "    <tr>"
1382             - "      <td>Payment type: </td>"
1383             - "      <td>[% payment.payment_type %]</td>"
1384             - "    </tr>"
1385             - "    <tr>"
1386             - "      <th colspan=\"2\" class=\"centerednames\">"
1387             - "        <h2><u>Payment receipt</u></h2>"
1388             - "      </th>"
1389             - "    </tr>"
1390             - "    <tr>"
1391             - "      <th>Description of charges</th>"
1392             - "      <th>Amount</th>"
1393             - "    </tr>"
1394             - "    [% FOREACH offset IN payment.credit_offsets %]"
1395             - "    <tr>"
1396             - "        <td>[% PROCESS account_type_description account=debit %]</td>"
1397             - "        <td>[% debit.amount * -1 | $Price %]</td>"
1398             - "    </tr>"
1399             - "    [% END %]"
1400             - "  <tfoot>"
1401             - "    <tr class=\"highlight\">"
1402             - "      <td>Total:</td>"
1403             - "      <td>[% payment.amount * -1 | $Price %]</td>"
1404             - "    </tr>"
1405             - "    <tr>"
1406             - "      <td>Tendered: </td>"
1407             - "      <td>[% tendered | $Price %]</td>"
1408             - "    </tr>"
1409             - "    <tr>"
1410             - "      <td>Change given:</td>"
1411             - "      <td>[% change | $Price %]</td>"
1412             - "    </tr>"
1413             - "  </tfoot>"
1414             - "</table>"
1415
1416         - module: reserves
1417           code: CANCEL_HOLD_ON_LOST
1418           branchcode: ""
1419           name: "Hold has been cancelled"
1420           is_html: 0
1421           title: "Hold has been cancelled"
1422           message_transport_type: email
1423           lang: default
1424           content:
1425             - "Dear [% borrower.firstname %] [% borrower.surname %],"
1426             - ""
1427             - "We regret to inform you, that the following item can not be provided due to it being missing. Your hold was cancelled."
1428             - ""
1429             - "Title: [% biblio.title %]"
1430             - "Author: [% biblio.author %]"
1431             - "Copy: [% item.copynumber %]"
1432             - "Location: [% branch.branchname %]"
1433
1434         - module: reserves
1435           code: HOLD
1436           branchcode: ""
1437           name: "Hold available for pickup"
1438           is_html: 0
1439           title: "Hold available for pickup at <<branches.branchname>>"
1440           message_transport_type: email
1441           lang: default
1442           content:
1443             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
1444             - ""
1445             - "You have a hold available for pickup as of <<reserves.waitingdate>>:"
1446             - ""
1447             - "Title: <<biblio.title>>"
1448             - "Author: <<biblio.author>>"
1449             - "Copy: <<items.copynumber>>"
1450             - "Location: <<branches.branchname>>"
1451             - "<<branches.branchaddress1>>"
1452             - "<<branches.branchaddress2>>"
1453             - "<<branches.branchaddress3>>"
1454             - "<<branches.branchcity>> <<branches.branchzip>>"
1455
1456         - module: reserves
1457           code: HOLD
1458           branchcode: ""
1459           name: "Hold available for pickup"
1460           is_html: 0
1461           title: "Hold available for pickup (print notice)"
1462           message_transport_type: print
1463           lang: default
1464           content:
1465             - "<<branches.branchname>>"
1466             - "<<branches.branchaddress1>>"
1467             - "<<branches.branchaddress2>>"
1468             - ""
1469             - ""
1470             - "Change service requested"
1471             - ""
1472             - ""
1473             - ""
1474             - ""
1475             - ""
1476             - ""
1477             - ""
1478             - "<<borrowers.firstname>> <<borrowers.surname>>"
1479             - "<<borrowers.address>>"
1480             - "<<borrowers.city>> <<borrowers.zipcode>>"
1481             - ""
1482             - ""
1483             - ""
1484             - ""
1485             - ""
1486             - ""
1487             - ""
1488             - ""
1489             - ""
1490             - ""
1491             - "<<borrowers.firstname>> <<borrowers.surname>> <<borrowers.cardnumber>>"
1492             - ""
1493             - "You have a hold available for pickup as of <<reserves.waitingdate>>:"
1494             - ""
1495             - "Title: <<biblio.title>>"
1496             - "Author: <<biblio.author>>"
1497             - "Copy: <<items.copynumber>>"
1498             - ""
1499
1500         - module: reserves
1501           code: HOLDPLACED
1502           branchcode: ""
1503           name: "Hold placed on item"
1504           is_html: 0
1505           title: "Hold placed on item"
1506           message_transport_type: email
1507           lang: default
1508           content:
1509             - "A hold has been placed on the following item : <<biblio.title>> (<<biblio.biblionumber>>) by the user <<borrowers.firstname>> <<borrowers.surname>> (<<borrowers.cardnumber>>)."
1510
1511         - module: reserves
1512           code: HOLD_CHANGED
1513           branchcode: ""
1514           name: "Canceled hold available for different patron"
1515           is_html: 0
1516           title: "Canceled hold available for different patron"
1517           message_transport_type: email
1518           lang: default
1519           content:
1520             - "The patron picking up <<biblio.title>> (<<items.barcode>>) has changed to <<borrowers.firstname>> <<borrowers.surname>> (<<borrowers.cardnumber>>)."
1521             - "Please update the hold information for this item."
1522             - "Title: <<biblio.title>>"
1523             - "Author: <<biblio.author>>"
1524             - "Item: <<items.itemcallnumber>>"
1525             - "Pickup location: <<branches.branchname>>"
1526
1527         - module: reserves
1528           code: HOLD_REMINDER
1529           branchcode: ""
1530           name: "Waiting hold reminder"
1531           is_html: 0
1532           title: "You have waiting holds."
1533           message_transport_type: email
1534           lang: default
1535           content:
1536             - "Dear [% borrower.firstname %] [% borrower.surname %],\n\nThe following holds are waiting at [% branch.branchname %]:\n\n[% FOREACH hold IN holds %]\n    [% hold.biblio.title %] : waiting since [% hold.waitingdate | $KohaDates %]\n[% END %]"
1537
1538         - module: reserves
1539           code: NEW_CURBSIDE_PICKUP
1540           branchcode: ""
1541           name: "New curbside pickup"
1542           is_html: 0
1543           title: "You have scheduled a curbside pickup for [% branch.branchname %]"
1544           message_transport_type: email
1545           lang: default
1546           content:
1547             - "[%- USE KohaDates -%]"
1548             - "[%- SET cp = curbside_pickup -%]"
1549             - ""
1550             - "You have a curbside pickup scheduled for [% cp.scheduled_pickup_datetime | $KohaDates with_hours => 1 %] at [% cp.library.branchname %]."
1551             - "Any holds waiting for you at the pickup time will be included in this pickup. At this time, that list includes:\n[%- FOREACH h IN cp.patron.holds %]\n[%- IF h.branchcode == cp.branchcode && h.found == 'W' %]\n* [% h.biblio.title %], [% h.biblio.author %] ([% h.item.barcode %])\n[%- END %]\n[%- END %]"
1552             - ""
1553             - "Once you have arrived, please call your library or log into your account and click the \"Alert staff of your arrival\" button to let them know you are there."
1554
1555         - module: serial
1556           code: SERIAL_ALERT
1557           branchcode: ""
1558           name: "New serial issue"
1559           is_html: 0
1560           title: "New serial issue is now available"
1561           message_transport_type: email
1562           lang: default
1563           content:
1564             - "<<borrowers.firstname>> <<borrowers.surname>>,"
1565             - ""
1566             - "The following issue is now available:"
1567             - ""
1568             - "<<biblio.title>>, <<biblio.author>> (<<items.barcode>>)"
1569             - ""
1570             - "Please pick it up at your convenience."
1571
1572         - module: suggestions
1573           code: ACCEPTED
1574           branchcode: ""
1575           name: "Suggestion accepted"
1576           is_html: 0
1577           title: "Purchase suggestion accepted"
1578           message_transport_type: email
1579           lang: default
1580           content:
1581             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
1582             - ""
1583             - "You have suggested that the library acquire <<suggestions.title>> by <<suggestions.author>>."
1584             - ""
1585             - "The library has reviewed your suggestion today. The item will be ordered as soon as possible. You will be notified by mail when the order is completed, and again when the item arrives at the library."
1586             - ""
1587             - "If you have any questions, please email us at <<branches.branchemail>>."
1588             - ""
1589             - "Thank you,"
1590             - ""
1591             - "<<branches.branchname>>"
1592
1593         - module: suggestions
1594           code: AVAILABLE
1595           branchcode: ""
1596           name: "Suggestion available"
1597           is_html: 0
1598           title: "Suggested purchase available"
1599           message_transport_type: email
1600           lang: default
1601           content:
1602             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
1603             - ""
1604             - "You have suggested that the library acquire <<suggestions.title>> by <<suggestions.author>>."
1605             - ""
1606             - "We are pleased to inform you that the item you requested is now part of the collection."
1607             - ""
1608             - "If you have any questions, please email us at <<branches.branchemail>>."
1609             - ""
1610             - "Thank you,"
1611             - ""
1612             - "<<branches.branchname>>"
1613
1614         - module: suggestions
1615           code: NEW_SUGGESTION
1616           branchcode: ""
1617           name: "New suggestion"
1618           is_html: 1
1619           title: "New suggestion"
1620           message_transport_type: email
1621           lang: default
1622           content:
1623             - "<h3>Suggestion pending approval</h3>"
1624             - "    <p><h4>Suggested by</h4>"
1625             - "    <ul>"
1626             - "    <li><<borrowers.firstname>> <<borrowers.surname>></li>"
1627             - "    <li><<borrowers.cardnumber>></li>"
1628             - "    <li><<borrowers.phone>></li>"
1629             - "    <li><<borrowers.email>></li>"
1630             - "    </ul>"
1631             - "    </p>"
1632             - "    <p><h4>Title suggested</h4>"
1633             - "    <ul>"
1634             - "    <li><b>Library:</b> <<branches.branchname>></li>"
1635             - "    <li><b>Title:</b> <<suggestions.title>></li>"
1636             - "    <li><b>Author:</b> <<suggestions.author>></li>"
1637             - "    <li><b>Copyright date:</b> <<suggestions.copyrightdate>></li>"
1638             - "    <li><b>Standard number (ISBN, ISSN or other):</b> <<suggestions.isbn>></li>"
1639             - "    <li><b>Publisher:</b> <<suggestions.publishercode>></li>"
1640             - "    <li><b>Collection title:</b> <<suggestions.collectiontitle>></li>"
1641             - "    <li><b>Publication place:</b> <<suggestions.place>></li>"
1642             - "    <li><b>Quantity:</b> <<suggestions.quantity>></li>"
1643             - "    <li><b>Item type:</b>  <<suggestions.itemtype>></li>"
1644             - "    <li><b>Reason for suggestion:</b> <<suggestions.patronreason>></li>"
1645             - "    <li><b>Notes:</b> <<suggestions.note>></li>"
1646             - "    </ul>"
1647             - "    </p>"
1648
1649         - module: suggestions
1650           code: ORDERED
1651           branchcode: ""
1652           name: "Suggestion ordered"
1653           is_html: 0
1654           title: "Suggested item ordered"
1655           message_transport_type: email
1656           lang: default
1657           content:
1658             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
1659             - ""
1660             - "You have suggested that the library acquire <<suggestions.title>> by <<suggestions.author>>."
1661             - ""
1662             - "We are pleased to inform you that the item you requested has now been ordered. It should arrive soon, at which time it will be processed for addition into the collection."
1663             - ""
1664             - "You will be notified again when the book is available."
1665             - ""
1666             - "If you have any questions, please email us at <<branches.branchemail>>"
1667             - ""
1668             - "Thank you,"
1669             - ""
1670             - "<<branches.branchname>>"
1671
1672         - module: suggestions
1673           code: REJECTED
1674           branchcode: ""
1675           name: "Suggestion rejected"
1676           is_html: 0
1677           title: "Purchase suggestion declined"
1678           message_transport_type: email
1679           lang: default
1680           content:
1681             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
1682             - ""
1683             - "You have suggested that the library acquire <<suggestions.title>> by <<suggestions.author>>."
1684             - ""
1685             - "The library has reviewed your request today, and has decided not to accept the suggestion at this time."
1686             - ""
1687             - "The reason given is: <<suggestions.reason>>"
1688             - ""
1689             - "If you have any questions, please email us at <<branches.branchemail>>."
1690             - ""
1691             - "Thank you,"
1692             - ""
1693             - "<<branches.branchname>>"
1694
1695         - module: suggestions
1696           code: TO_PROCESS
1697           branchcode: ""
1698           name: "Notify fund owner"
1699           is_html: 0
1700           title: "A suggestion is ready to be processed"
1701           message_transport_type: email
1702           lang: default
1703           content:
1704             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
1705             - ""
1706             - "A new suggestion is ready to be processed: <<suggestions.title>> by <<suggestions.author>>."
1707             - ""
1708             - "Thank you,"
1709             - ""
1710             - "<<branches.branchname>>"
1711
1712         - module: suggestions
1713           code: NOTIFY_MANAGER
1714           branchcode: ""
1715           name: "Notify manager of a suggestion"
1716           is_html: 0
1717           title: "A suggestion has been assigned to you"
1718           message_transport_type: email
1719           lang: default
1720           content:
1721             - "Dear [% borrower.firstname %] [% borrower.surname %],"
1722             - ""
1723             - "A new suggestion has been assigned to you: [% suggestion.title %]."
1724             - ""
1725             - "Thank you,"
1726             - ""
1727             - "[% branch.branchname %]"
1728
1729         - module: members
1730           code: PROBLEM_REPORT
1731           branchcode: ""
1732           name: "OPAC problem report"
1733           is_html: 0
1734           title: "OPAC problem report"
1735           message_transport_type: email
1736           lang: default
1737           content:
1738             - "Username: <<problem_reports.username>>"
1739             - ""
1740             - "Problem page: <<problem_reports.problempage>>"
1741             - ""
1742             - "Title: <<problem_reports.title>>"
1743             - ""
1744             - "Message: <<problem_reports.content>>"
1745
1746         - module: circulation
1747           code: AUTO_RENEWALS
1748           branchcode: ""
1749           name: "Notification of automatic renewal"
1750           is_html: 0
1751           title: "Automatic renewal notice"
1752           message_transport_type: email
1753           lang: default
1754           content:
1755             - "Dear [% borrower.firstname %] [% borrower.surname %],"
1756             - "[% IF checkout.auto_renew_error %]"
1757             - "The following item, [% biblio.title %], has not been renewed because:"
1758             - "[% IF checkout.auto_renew_error == 'too_many' %]"
1759             - "You have reached the maximum number of renewals possible."
1760             - "[% ELSIF checkout.auto_renew_error == 'on_reserve' %]"
1761             - "This item is on hold for another patron."
1762             - "[% ELSIF checkout.auto_renew_error == 'restriction' %]"
1763             - "You are currently restricted."
1764             - "[% ELSIF checkout.auto_renew_error == 'overdue' %]"
1765             - "You have overdue items."
1766             - "[% ELSIF checkout.auto_renew_error == 'auto_too_late' %]"
1767             - "It's too late to renew this item."
1768             - "[% ELSIF checkout.auto_renew_error == 'auto_too_much_oweing' %]"
1769             - "Your total unpaid fines are too high."
1770             - "[% ELSIF checkout.auto_renew_error == 'too_unseen' %]"
1771             - "This item must be renewed at the library."
1772             - "[% ELSIF checkout.auto_renew_error == 'auto_account_expired' %]"
1773             - "Your account has expired."
1774             - "[% END %]"
1775             - "[% ELSE %]"
1776             - "The following item, [% biblio.title %], has correctly been renewed and is now due on [% checkout.date_due | $KohaDates as_due_date => 1 %]"
1777             - "[% END %]"
1778
1779         - module: circulation
1780           code: CHECKINSLIP
1781           branchcode: ""
1782           name: "Checkin slip"
1783           is_html: 1
1784           title: "Checkin slip"
1785           message_transport_type: print
1786           lang: default
1787           content:
1788             - "<h3>[% branch.branchname %]</h3>"
1789             - "Checked in items for [% borrower.title %] [% borrower.firstname %] [% borrower.initials %] [% borrower.surname %] <br />"
1790             - "([% borrower.cardnumber %]) <br />"
1791             - ""
1792             - "[% today | $KohaDates %]<br />"
1793             - ""
1794             - "<h4>Checked in today</h4>"
1795             - "[% FOREACH checkin IN old_checkouts %]"
1796             - "[% SET item = checkin.item %]"
1797             - "<p>"
1798             - "[% item.biblio.title %] <br />"
1799             - "Barcode: [% item.barcode %] <br />"
1800             - "</p>"
1801             - "[% END %]"
1802
1803         - module: circulation
1804           code: OVERDUE_FINE_DESC
1805           branchcode: ""
1806           name: "Overdue item fine description"
1807           is_html: 0
1808           title: "Overdue item fine description"
1809           message_transport_type: print
1810           lang: default
1811           content:
1812             - "[% item.biblio.title %] [% checkout.date_due | $KohaDates %]"
1813
1814         - module: circulation
1815           code: AUTO_RENEWALS_DGST
1816           branchcode: ""
1817           name: "Notification on auto renewals"
1818           is_html: 0
1819           title: "Auto renewals (Digest)"
1820           message_transport_type: email
1821           lang: default
1822           content:
1823             - "Dear [% borrower.firstname %] [% borrower.surname %],"
1824             - "[% IF error %]"
1825             - "There were [% error %] items that were not renewed."
1826             - "[% END %]"
1827             - "[% IF success %]"
1828             - "There were [% success %] items that were renewed."
1829             - "[% END %]"
1830             - "[% FOREACH checkout IN checkouts %]"
1831             - "[% checkout.item.biblio.title %] : [% checkout.item.barcode %]"
1832             - "[% IF !checkout.auto_renew_error %]"
1833             - "was renewed until [% checkout.date_due | $KohaDates as_due_date => 1%]"
1834             - "[% ELSIF checkout.auto_renew_error == 'too_many' %]"
1835             - "You have reached the maximum number of renewals possible."
1836             - "[% ELSIF checkout.auto_renew_error == 'on_reserve' %]"
1837             - "This item is on hold for another patron."
1838             - "[% ELSIF checkout.auto_renew_error == 'restriction' %]"
1839             - "You are currently restricted."
1840             - "[% ELSIF checkout.auto_renew_error == 'overdue' %]"
1841             - "You have overdue items."
1842             - "[% ELSIF checkout.auto_renew_error == 'auto_too_late' %]"
1843             - "It's too late to renew this item."
1844             - "[% ELSIF checkout.auto_renew_error == 'auto_too_much_oweing' %]"
1845             - "Your total unpaid fines are too high."
1846             - "[% ELSIF checkout.auto_renew_error == 'too_unseen' %]"
1847             - "This item must be renewed at the library."
1848             - "[% END %]"
1849             - "[% END %]"
1850
1851         - module: circulation
1852           code: RETURN_RECALLED_ITEM
1853           branchcode: ""
1854           name: "Notification to return a recalled item"
1855           is_html: 0
1856           title: "Notification to return a recalled item"
1857           message_transport_type: email
1858           lang: default
1859           content:
1860             - "Date: <<today>>"
1861             - ""
1862             - "<<borrowers.firstname>> <<borrowers.surname>>,"
1863             - ""
1864             - "A recall has been placed on the following item: <<biblio.title>> / <<biblio.author>> (<<items.barcode>>). The due date has been updated, and is now <<issues.date_due>>. Please return the item before the due date."
1865             - ""
1866             - "Thank you!"
1867
1868         - module: circulation
1869           code: PICKUP_RECALLED_ITEM
1870           branchcode: ""
1871           name: "Recalled item awaiting pickup"
1872           is_html: 0
1873           title: "Recalled item awaiting pickup"
1874           message_transport_type: email
1875           lang: default
1876           content:
1877             - "Date: <<today>>"
1878             - ""
1879             - "<<borrowers.firstname>> <<borrowers.surname>>,"
1880             - ""
1881             - "A recall that you requested on the following item: <<biblio.title>> / <<biblio.author>> (<<items.barcode>>) is now ready for you to pick up at <<recalls.branchcode>>. Please pick up your item by <<recalls.expirationdate>>."
1882             - ""
1883             - "Thank you!"
1884
1885         - module: circulation
1886           code: RECALL_REQUESTER_DET
1887           branchcode: ""
1888           name: "Details of patron who recalled item"
1889           is_html: 0
1890           title: "Details of patron who recalled item"
1891           message_transport_type: print
1892           lang: default
1893           content:
1894             - "Date: <<today>>"
1895             - ""
1896             - "Recall for pickup at <<branches.branchname>>"
1897             - "<<borrowers.surname>>, <<borrowers.firstname>> (<<borrowers.cardnumber>>)"
1898             - "<<borrowers.phone>>"
1899             - "<<borrowers.streetnumber>> <<borrowers.address>>, <<borrowers.address2>>, <<borrowers.city>> <<borrowers.zipcode>>"
1900             - "<<borrowers.email>>"
1901             - ""
1902             - "ITEM RECALLED"
1903             - "<<biblio.title>> by <<biblio.author>>"
1904             - "Barcode: <<items.barcode>>"
1905             - "Callnumber: <<items.itemcallnumber>>"
1906             - "Waiting since: <<recalls.waitingdate>>"
1907             - "Notes: <<recalls.recallnotes>>"
1908
1909         - module: members
1910           code: 2FA_DISABLE
1911           branchcode: ""
1912           name: "Confirmation of disabling two factor authentication"
1913           is_html: 1
1914           title: "Confirmation of disabling two factor authentication"
1915           message_transport_type: email
1916           lang: default
1917           content:
1918             - "<p>Dear [% borrower.firstname %] [% borrower.surname %],</p>"
1919             - "<p>This is to confirm that someone disabled two factor authentication on your account.</p>"
1920             - "<p>If you did not do this, someone else may be using your account. Please contact technical support.</p>"
1921             - "<p>Your library</p>"
1922
1923         - module: members
1924           code: 2FA_ENABLE
1925           branchcode: ""
1926           name: "Confirmation of enabling two factor authentication"
1927           is_html: 1
1928           title: "Confirmation of enabling two factor authentication"
1929           message_transport_type: email
1930           lang: default
1931           content:
1932             - "<p>Dear [% borrower.firstname %] [% borrower.surname %],</p>"
1933             - "<p>This is to confirm that someone enabled two factor authentication on your account.</p>"
1934             - "<p>If you did not do this, someone else may be using your account. Please contact technical support.</p>"
1935             - "<p>Your library</p>"
1936
1937         - module: members
1938           code: OPAC_REG
1939           branchcode: ""
1940           name: "New OPAC self-registration submitted"
1941           is_html: 1
1942           title: "New OPAC self-registration"
1943           message_transport_type: email
1944           lang: default
1945           content:
1946             - "<h3>New OPAC self-registration</h3>"
1947             - "<p><h4>Self-registration made:</h4>"
1948             - "<ul>"
1949             - "<li> [% borrower.firstname %] [% borrower.surname %]</li>"
1950             - "[% IF borrower.cardnumber %]<li>Cardnumber: [% borrower.cardnumber %]</li>[% END %]"
1951             - "[% IF borrower.email %]<li>Email: [% borrower.email %]</li>[% END %]"
1952             - "[% IF borrower.phone %]<li>Phone: [% borrower.phone %]</li>[% END %]"
1953             - "[% IF borrower.mobile %]<li>Mobile: [% borrower.mobile %]</li>[% END %]"
1954             - "[% IF borrower.fax %]<li>Fax: [% borrower.fax %]</li>[% END %]"
1955             - "[% IF borrower.emailpro %]<li>Secondary email: [% borrower.emailpro %]</li>[% END %]"
1956             - "[% IF borrower.phonepro %]<li>Secondary phone: [% borrower.phonepro %]</li>[% END %]"
1957             - "[% IF borrower.branchcode %]<li>Home library: [% borrower.branchcode %]</li>[% END %]"
1958             - "[% IF borrower.categorycode %]<li>Temporary patron category: [% borrower.categorycode %]</li>[% END %]"
1959             - "</ul>"
1960             - "</p>"