Bug 20472: Add format to sample notices
[koha.git] / 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             - "[% USE Price %]"
56             - "[% PROCESS 'accounts.inc' %]"
57             - "<table>"
58             - "[% IF ( LibraryName ) %]"
59             - " <tr>"
60             - "    <th colspan=\"5\" class=\"centerednames\">"
61             - "        <h3>[% LibraryName | html %]</h3>"
62             - "    </th>"
63             - " </tr>"
64             - "[% END %]"
65             - " <tr>"
66             - "    <th colspan=\"5\" class=\"centerednames\">"
67             - "        <h2><u>Fee receipt</u></h2>"
68             - "    </th>"
69             - " </tr>"
70             - " <tr>"
71             - "    <th colspan=\"5\" class=\"centerednames\">"
72             - "        <h2>[% Branches.GetName( credit.patron.branchcode ) | html %]</h2>"
73             - "    </th>"
74             - " </tr>"
75             - " <tr>"
76             - "    <th colspan=\"5\">"
77             - "        Received with thanks from  [% credit.patron.firstname | html %] [% credit.patron.surname | html %] <br />"
78             - "        Card number: [% credit.patron.cardnumber | html %]<br />"
79             - "    </th>"
80             - " </tr>"
81             - "  <tr>"
82             - "    <th>Created</th>"
83             - "    <th>Updated</th>"
84             - "    <th>Description of charges</th>"
85             - "    <th>Note</th>"
86             - "    <th>Amount</th>"
87             - " </tr>"
88             - ""
89             - " <tr class=\"highlight\">"
90             - "    <td>[% credit.date | $KohaDates %]</td>"
91             - "    <td>[% credit.timestamp | $KohaDates with_hours = 1 %]</td>"
92             - "    <td>"
93             - "      [% PROCESS account_type_description account=credit %]"
94             - "      [%- IF credit.description %], [% credit.description | html %][% END %]"
95             - "    </td>"
96             - "    <td>[% credit.note | html %]</td>"
97             - "    <td class=\"credit\">[% credit.amount | $Price %]</td>"
98             - " </tr>"
99             - ""
100             - "[% IF ( tendered ) %]"
101             - "  <tr>"
102             - "    <td colspan=\"3\">Amount tendered: </td>"
103             - "    <td>[% tendered | $Price %]</td>"
104             - "  </tr>"
105             - "  <tr>"
106             - "    <td colspan=\"3\">Change given: </td>"
107             - "    <td>[% change | $Price %]</td>"
108             - "  </tr>"
109             - "[% END %]"
110             - ""
111             - "<tfoot>"
112             - "  <tr>"
113             - "    <td colspan=\"4\">Total outstanding dues as on date: </td>"
114             - "    [% IF ( credit.patron.account.balance >= 0 ) %]<td class=\"credit\">[% ELSE %]<td class=\"debit\">[% END %][% credit.patron.account.balance | $Price %]</td>"
115             - "  </tr>"
116             - "</tfoot>"
117             - "</table>"
118
119         - module: circulation
120           code: ACCOUNT_DEBIT
121           branchcode: ""
122           name: "Account fee"
123           is_html: 1
124           title: "Account fee"
125           message_transport_type: print
126           lang: default
127           content:
128             - "[% USE Price %]"
129             - "[% PROCESS 'accounts.inc' %]"
130             - "<table>"
131             - "  [% IF ( LibraryName ) %]"
132             - "    <tr>"
133             - "      <th colspan=\"6\" class=\"centerednames\">"
134             - "        <h3>[% LibraryName | html %]</h3>"
135             - "      </th>"
136             - "    </tr>"
137             - "  [% END %]"
138             - ""
139             - "  <tr>"
140             - "    <th colspan=\"6\" class=\"centerednames\">"
141             - "      <h2><u>INVOICE</u></h2>"
142             - "    </th>"
143             - "  </tr>"
144             - "  <tr>"
145             - "    <th colspan=\"6\" class=\"centerednames\">"
146             - "      <h2>[% Branches.GetName( debit.patron.branchcode ) | html %]</h2>"
147             - "    </th>"
148             - "  </tr>"
149             - "  <tr>"
150             - "    <th colspan=\"6\" >"
151             - "      Bill to: [% debit.patron.firstname | html %] [% debit.patron.surname | html %] <br />"
152             - "      Card number: [% debit.patron.cardnumber | html %]<br />"
153             - "    </th>"
154             - "  </tr>"
155             - "  <tr>"
156             - "    <th>Created</th>"
157             - "    <th>Updated</th>"
158             - "    <th>Description of charges</th>"
159             - "    <th>Note</th>"
160             - "    <th style=\"text-align:right;\">Amount</th>"
161             - "    <th style=\"text-align:right;\">Amount outstanding</th>"
162             - "  </tr>"
163             - ""
164             - "  <tr class=\"highlight\">"
165             - "    <td>[% debit.date | $KohaDates%]</td>"
166             - "    <td>[% debit.timestamp | $KohaDates with_hours = 1 %]</td>"
167             - "    <td>"
168             - "      [% PROCESS account_type_description account=debit %]"
169             - "      [%- IF debit.description %], [% debit.description | html %][% END %]"
170             - "    </td>"
171             - "    <td>[% debit.note | html %]</td>"
172             - "    <td class=\"debit\">[% debit.amount | $Price %]</td>"
173             - "    <td class=\"debit\">[% debit.amountoutstanding | $Price %]</td>"
174             - "  </tr>"
175             - ""
176             - "  <tfoot>"
177             - "    <tr>"
178             - "      <td colspan=\"5\">Total outstanding dues as on date: </td>"
179             - "      [% IF ( totalcredit ) %]<td class=\"credit\">[% ELSE %]<td class=\"debit\">[% END %][% total | $Price %]</td>"
180             - "    </tr>"
181             - "  </tfoot>"
182             - "</table>"
183
184         - module: circulation
185           code: ACCOUNT_PAYMENT
186           branchcode: ""
187           name: "Account payment"
188           is_html: 0
189           title: "Account payment"
190           message_transport_type: email
191           lang: default
192           content:
193             - "[%- USE Price -%]"
194             - "A payment of [% credit.amount * -1 | $Price %] has been applied to your account."
195             - ""
196             - "This payment affected the following fees:"
197             - "[%- FOREACH o IN offsets %]"
198             - "Description: [% o.debit.description %]"
199             - "Amount paid: [% o.amount * -1 | $Price %]"
200             - "Amount remaining: [% o.debit.amountoutstanding | $Price %]"
201             - "[% END %]"
202
203         - module: circulation
204           code: ACCOUNT_WRITEOFF
205           branchcode: ""
206           name: "Account writeoff"
207           is_html: 0
208           title: "Account writeoff"
209           message_transport_type: email
210           lang: default
211           content:
212             - "[%- USE Price -%]"
213             - "An account writeoff of [% credit.amount * -1 | $Price %] has been applied to your account."
214             - ""
215             - "This writeoff affected the following fees:"
216             - "[%- FOREACH o IN offsets %]"
217             - "Description: [% o.debit.description %]"
218             - "Amount paid: [% o.amount * -1 | $Price %]"
219             - "Amount remaining: [% o.debit.amountoutstanding | $Price %]"
220             - "[% END %]"
221
222         - module: circulation
223           code: AR_CANCELED
224           branchcode: ""
225           name: "Article request - canceled"
226           is_html: 0
227           title: "Article request canceled"
228           message_transport_type: email
229           lang: default
230           content:
231             - "Dear <<borrowers.firstname>> <<borrowers.surname>> (<<borrowers.cardnumber>>),"
232             - ""
233             - "Your request for an article from <<biblio.title>> (<<items.barcode>>) has been canceled for the following reason:"
234             - ""
235             - "<<article_requests.notes>>"
236             - ""
237             - "Article requested:"
238             - "Title: <<article_requests.title>>"
239             - "Author: <<article_requests.author>>"
240             - "Volume: <<article_requests.volume>>"
241             - "Issue: <<article_requests.issue>>"
242             - "Date: <<article_requests.date>>"
243             - "Pages: <<article_requests.pages>>"
244             - "Chapters: <<article_requests.chapters>>"
245             - "Notes: <<article_requests.patron_notes>>"
246             - "Format: [% IF article_request.format == 'PHOTOCOPY' %]Copy[% ELSIF article_request.format == 'SCAN' %]Scan[% END %]"
247             - ""
248             - "Your library"
249
250         - module: circulation
251           code: AR_COMPLETED
252           branchcode: ""
253           name: "Article request - completed"
254           is_html: 0
255           title: "Article request completed"
256           message_transport_type: email
257           lang: default
258           content:
259             - "Dear <<borrowers.firstname>> <<borrowers.surname>> (<<borrowers.cardnumber>>),"
260             - ""
261             - "We have completed your request for an article from <<biblio.title>> (<<items.barcode>>)."
262             - ""
263             - "Article requested:"
264             - "Title: <<article_requests.title>>"
265             - "Author: <<article_requests.author>>"
266             - "Volume: <<article_requests.volume>>"
267             - "Issue: <<article_requests.issue>>"
268             - "Date: <<article_requests.date>>"
269             - "Pages: <<article_requests.pages>>"
270             - "Chapters: <<article_requests.chapters>>"
271             - "Notes: <<article_requests.patron_notes>>"
272             - "Format: [% IF article_request.format == 'PHOTOCOPY' %]Copy[% ELSIF article_request.format == 'SCAN' %]Scan[% END %]"
273             - ""
274             - "[% 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 %]"
275             - ""
276             - "Thank you!"
277
278         - module: circulation
279           code: AR_PENDING
280           branchcode: ""
281           name: "Article request - open"
282           is_html: 0
283           title: "Article request received"
284           message_transport_type: email
285           lang: default
286           content:
287             - "Dear <<borrowers.firstname>> <<borrowers.surname>> (<<borrowers.cardnumber>>)"
288             - ""
289             - "We have received your request for an article from <<biblio.title>> (<<items.barcode>>)."
290             - ""
291             - "Article requested:"
292             - "Title: <<article_requests.title>>"
293             - "Author: <<article_requests.author>>"
294             - "Volume: <<article_requests.volume>>"
295             - "Issue: <<article_requests.issue>>"
296             - "Date: <<article_requests.date>>"
297             - "Pages: <<article_requests.pages>>"
298             - "Chapters: <<article_requests.chapters>>"
299             - "Notes: <<article_requests.patron_notes>>"
300             - "Format: [% IF article_request.format == 'PHOTOCOPY' %]Copy[% ELSIF article_request.format == 'SCAN' %]Scan[% END %]"
301             - ""
302             - "Thank you!"
303
304         - module: circulation
305           code: AR_PROCESSING
306           branchcode: ""
307           name: "Article request - processing"
308           is_html: 0
309           title: "Article request processing"
310           message_transport_type: email
311           lang: default
312           content:
313             - "Dear <<borrowers.firstname>> <<borrowers.surname>> (<<borrowers.cardnumber>>),"
314             - ""
315             - "We are now processing your request for an article from <<biblio.title>> (<<items.barcode>>)."
316             - ""
317             - "Article requested:"
318             - "Title: <<article_requests.title>>"
319             - "Author: <<article_requests.author>>"
320             - "Volume: <<article_requests.volume>>"
321             - "Issue: <<article_requests.issue>>"
322             - "Date: <<article_requests.date>>"
323             - "Pages: <<article_requests.pages>>"
324             - "Chapters: <<article_requests.chapters>>"
325             - "Notes: <<article_requests.patron_notes>>"
326             - "Format: [% IF article_request.format == 'PHOTOCOPY' %]Copy[% ELSIF article_request.format == 'SCAN' %]Scan[% END %]"
327             - ""
328             - "Thank you!"
329
330         - module: circulation
331           code: AR_SLIP
332           branchcode: ""
333           name: "Article request - print slip"
334           is_html: 0
335           title: "Article request"
336           message_transport_type: print
337           lang: default
338           content:
339             - "Article request:"
340             - ""
341             - "<<borrowers.firstname>> <<borrowers.surname>> (<<borrowers.cardnumber>>),"
342             - ""
343             - "Title: <<biblio.title>>"
344             - "Barcode: <<items.barcode>>"
345             - ""
346             - "Article requested:"
347             - "Title: <<article_requests.title>>"
348             - "Author: <<article_requests.author>>"
349             - "Volume: <<article_requests.volume>>"
350             - "Issue: <<article_requests.issue>>"
351             - "Date: <<article_requests.date>>"
352             - "Pages: <<article_requests.pages>>"
353             - "Chapters: <<article_requests.chapters>>"
354             - "Notes: <<article_requests.patron_notes>>"
355             - "Format: [% IF article_request.format == 'PHOTOCOPY' %]Copy[% ELSIF article_request.format == 'SCAN' %]Scan[% END %]"
356             - ""
357
358         - module: circulation
359           code: CHECKIN
360           branchcode: ""
361           name: "Item check-in (digest)"
362           is_html: 0
363           title: "Check-ins"
364           message_transport_type: email
365           lang: default
366           content:
367             - "The following items have been checked in:"
368             - "----"
369             - "[% biblio.title %]"
370             - "----"
371             - "Thank you."
372
373         - module: circulation
374           code: CHECKOUT
375           branchcode: ""
376           name: "Item check-out (digest)"
377           is_html: 0
378           title: "Checkouts"
379           message_transport_type: email
380           lang: default
381           content:
382             - "The following items have been checked out:"
383             - "----"
384             - "[% biblio.title %]"
385             - "----"
386             - "Thank you for visiting [% branch.branchname %]."
387
388         - module: circulation
389           code: CHECKOUT_NOTE
390           branchcode: ""
391           name: "Checkout note on item set by patron"
392           is_html: 0
393           title: "Checkout note"
394           message_transport_type: email
395           lang: default
396           content:
397             - "<<borrowers.firstname>> <<borrowers.surname>> has added a note to the item <<biblio.title>> - <<biblio.author>> (<<biblio.biblionumber>>)."
398
399         - module: circulation
400           code: DUE
401           branchcode: ""
402           name: "Item due reminder"
403           is_html: 0
404           title: "Item due reminder"
405           message_transport_type: email
406           lang: default
407           content:
408             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
409             - ""
410             - "The following item is now due:"
411             - ""
412             - "<<biblio.title>>, <<biblio.author>> (<<items.barcode>>)"
413
414         - module: circulation
415           code: DUEDGST
416           branchcode: ""
417           name: "Item due reminder (digest)"
418           is_html: 0
419           title: "Item due reminder"
420           message_transport_type: email
421           lang: default
422           content:
423             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
424             - ""
425             - "The following item(s) are now due:"
426             - ""
427             - "<<items.content>>"
428             - ""
429             - "Thank you."
430
431         - module: circulation
432           code: HOLD_SLIP
433           branchcode: ""
434           name: "Hold slip"
435           is_html: 1
436           title: "Hold slip"
437           message_transport_type: email
438           lang: default
439           content:
440             - "<h5>Date: <<today>></h5>"
441             - ""
442             - "<h3> Transfer to/Hold in <<branches.branchname>></h3>"
443             - ""
444             - "<h3><<borrowers.surname>>, <<borrowers.firstname>></h3>"
445             - ""
446             - "<ul>"
447             - "    <li><<borrowers.cardnumber>></li>"
448             - "    <li><<borrowers.phone>></li>"
449             - "    <li> <<borrowers.address>><br />"
450             - "         <<borrowers.address2>><br />"
451             - "         <<borrowers.city >>  <<borrowers.zipcode>>"
452             - "    </li>"
453             - "    <li><<borrowers.email>></li>"
454             - "</ul>"
455             - "<br />"
456             - "<h3>ITEM ON HOLD</h3>"
457             - "<h4><<biblio.title>></h4>"
458             - "<h5><<biblio.author>></h5>"
459             - "<ul>"
460             - "   <li><<items.barcode>></li>"
461             - "   <li><<items.itemcallnumber>></li>"
462             - "   <li><<reserves.waitingdate>></li>"
463             - "</ul>"
464             - "<p>Notes:"
465             - "<pre><<reserves.reservenotes>></pre>"
466             - "</p>"
467             - ""
468
469         - module: circulation
470           code: ISSUEQSLIP
471           branchcode: ""
472           name: "Issue quick slip"
473           is_html: 1
474           title: "Issue quick slip"
475           message_transport_type: email
476           lang: default
477           content:
478             - "<h3><<branches.branchname>></h3>"
479             - "Checked out to <<borrowers.title>> <<borrowers.firstname>> <<borrowers.initials>> <<borrowers.surname>> <br />"
480             - "(<<borrowers.cardnumber>>) <br />"
481             - ""
482             - "<<today>><br />"
483             - ""
484             - "<h4>Checked out today</h4>"
485             - "<checkedout>"
486             - "<p>"
487             - "<<biblio.title>> <br />"
488             - "Barcode: <<items.barcode>><br />"
489             - "Date due: <<issues.date_due>><br />"
490             - "</p>"
491             - "</checkedout>"
492
493         - module: circulation
494           code: ISSUESLIP
495           branchcode: ""
496           name: "Issue slip"
497           is_html: 1
498           title: "Issue slip"
499           message_transport_type: email
500           lang: default
501           content:
502             - "<h3><<branches.branchname>></h3>"
503             - "Checked out to <<borrowers.title>> <<borrowers.firstname>> <<borrowers.initials>> <<borrowers.surname>> <br />"
504             - "(<<borrowers.cardnumber>>) <br />"
505             - ""
506             - "<<today>><br />"
507             - ""
508             - "<h4>Checked out</h4>"
509             - "<checkedout>"
510             - "<p>"
511             - "<<biblio.title>> <br />"
512             - "Barcode: <<items.barcode>><br />"
513             - "Date due: <<issues.date_due>><br />"
514             - "</p>"
515             - "</checkedout>"
516             - ""
517             - "<h4>Overdues</h4>"
518             - "<overdue>"
519             - "<p>"
520             - "<<biblio.title>> <br />"
521             - "Barcode: <<items.barcode>><br />"
522             - "Date due: <<issues.date_due>><br />"
523             - "</p>"
524             - "</overdue>"
525             - ""
526             - "<hr>"
527             - ""
528             - "<h4 style=\"text-align: center; font-style:italic;\">News</h4>"
529             - "<news>"
530             - "<div class=\"newsitem\">"
531             - "<h5 style=\"margin-bottom: 1px; margin-top: 1px\"><b><<opac_news.title>></b></h5>"
532             - "<p style=\"margin-bottom: 1px; margin-top: 1px\"><<opac_news.content>></p>"
533             - "<p class=\"newsfooter\" style=\"font-size: 8pt; font-style:italic; margin-bottom: 1px; margin-top: 1px\">Posted on <<opac_news.published_on>></p>"
534             - "<hr />"
535             - "</div>"
536             - "</news>"
537
538         - module: circulation
539           code: ODUE
540           branchcode: ""
541           name: "Overdue notice"
542           is_html: 0
543           title: "Item overdue"
544           message_transport_type: email
545           lang: default
546           content:
547             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
548             - ""
549             - "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."
550             - ""
551             - "<<branches.branchname>>"
552             - "<<branches.branchaddress1>>"
553             - "<<branches.branchaddress2>> <<branches.branchaddress3>>"
554             - "Phone: <<branches.branchphone>>"
555             - "Fax: <<branches.branchfax>>"
556             - "Email: <<branches.branchemail>>"
557             - ""
558             - "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."
559             - ""
560             - "The following item(s) is/are currently overdue:"
561             - ""
562             - "<item>\"<<biblio.title>>\" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item>"
563             - ""
564             - "Thank-you for your prompt attention to this matter."
565             - ""
566             - "<<branches.branchname>> Staff"
567             - ""
568
569         - module: circulation
570           code: OVERDUES_SLIP
571           branchcode: ""
572           name: "Overdues slip"
573           is_html: 0
574           title: "Overdues slip"
575           message_transport_type: print
576           lang: default
577           content:
578             - "The following item(s) is/are currently overdue:"
579             - ""
580             - "<item>\"<<biblio.title>>\" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item>"
581             - ""
582
583         - module: circulation
584           code: PREDUE
585           branchcode: ""
586           name: "Advance notice of item due"
587           is_html: 0
588           title: "Advance notice of item due"
589           message_transport_type: email
590           lang: default
591           content:
592             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
593             - ""
594             - "The following item will be due soon:"
595             - ""
596             - "<<biblio.title>>, <<biblio.author>> (<<items.barcode>>)"
597
598         - module: circulation
599           code: PREDUEDGST
600           branchcode: ""
601           name: "Advance notice of item due (digest)"
602           is_html: 0
603           title: "Advance notice of item due"
604           message_transport_type: email
605           lang: default
606           content:
607             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
608             - ""
609             - "The following item(s) will be due soon:"
610             - ""
611             - "<<items.content>>"
612             - ""
613             - "Thank you."
614
615         - module: circulation
616           code: RENEWAL
617           branchcode: ""
618           name: "Item renewals"
619           is_html: 0
620           title: "Item renewals"
621           message_transport_type: email
622           lang: default
623           content:
624             - "The following items have been renewed:"
625             - "----"
626             - "<<biblio.title>>"
627             - "----"
628             - "Thank you for visiting <<branches.branchname>>."
629
630         - module: circulation
631           code: SR_SLIP
632           branchcode: ""
633           name: "Stock rotation slip"
634           is_html: 0
635           title: "Stock rotation report"
636           message_transport_type: email
637           lang: default
638           content:
639             - "Stock rotation report for [% branch.name %]:"
640             - ""
641             - "[% IF branch.items.size %][% branch.items.size %] items to be processed for this branch."
642             - "[% ELSE %]No items to be processed for this branch"
643             - "[% END %][% FOREACH item IN branch.items %][% IF item.reason != 'in-demand' %]Title: [% item.title %]"
644             - "Author: [% item.author %]"
645             - "Call number: [% item.callnumber %]"
646             - "Location: [% item.location %]"
647             - "Barcode: [% item.barcode %]"
648             - "On loan?: [% item.onloan %]"
649             - "Status: [% item.reason %]"
650             - "Current library: [% item.branch.branchname %] [% item.branch.branchcode %]"
651             - ""
652             - "[% END %][% END %]"
653
654         - module: circulation
655           code: TRANSFERSLIP
656           branchcode: ""
657           name: "Transfer slip"
658           is_html: 1
659           title: "Transfer slip"
660           message_transport_type: email
661           lang: default
662           content:
663             - "<h5>Date: <<today>></h5>"
664             - ""
665             - "<h3>Transfer to <<branches.branchname>></h3>"
666             - ""
667             - "<h3>ITEM</h3>"
668             - "<h4><<biblio.title>></h4>"
669             - "<h5><<biblio.author>></h5>"
670             - "<ul>"
671             - "   <li><<items.barcode>></li>"
672             - "   <li><<items.itemcallnumber>></li>"
673             - "</ul>"
674
675         - module: claimacquisition
676           code: ACQCLAIM
677           branchcode: ""
678           name: "Acquisition claim"
679           is_html: 0
680           title: "Item not received"
681           message_transport_type: email
682           lang: default
683           content:
684             - "<<aqbooksellers.name>>"
685             - "<<aqbooksellers.address1>>"
686             - "<<aqbooksellers.address2>>"
687             - "<<aqbooksellers.address3>>"
688             - "<<aqbooksellers.address4>>"
689             - "<<aqbooksellers.phone>>"
690             - ""
691             - "<order>Ordernumber <<aqorders.ordernumber>> (<<biblio.title>>) (<<aqorders.quantity>> ordered) ($<<aqorders.listprice>> each) has not been received.</order>"
692
693         - module: ill
694           code: ILL_PICKUP_READY
695           branchcode: ""
696           name: "ILL request ready for pickup"
697           is_html: 0
698           title: "Interlibrary loan request ready for pickup"
699           message_transport_type: email
700           lang: default
701           content:
702             - "Dear [% borrower.firstname %] [% borrower.surname %],"
703             - ""
704             - "The Interlibrary loans request number [% illrequest.illrequest_id %] you placed for:"
705             - ""
706             - "- [% ill_bib_title %] - [% ill_bib_author %]"
707             - ""
708             - "is ready for pick up from [% branch.branchname %]."
709             - ""
710             - "Kind Regards"
711             - ""
712             - "[% branch.branchname %]"
713             - "[% branch.branchaddress1 %]"
714             - "[% branch.branchaddress2 %]"
715             - "[% branch.branchaddress3 %]"
716             - "[% branch.branchcity %]"
717             - "[% branch.branchstate %]"
718             - "[% branch.branchzip %]"
719             - "[% branch.branchphone %]"
720             - "[% branch.branchillemail %]"
721             - "[% branch.branchemail %]"
722
723         - module: ill
724           code: ILL_REQUEST_UNAVAIL
725           branchcode: ""
726           name: "ILL request unavailable"
727           is_html: 0
728           title: "Interlibrary loan request unavailable"
729           message_transport_type: email
730           lang: default
731           content:
732             - "Dear [% borrower.firstname %] [% borrower.surname %],"
733             - ""
734             - "The Interlibrary loans request number [% illrequest.illrequest_id %] you placed for"
735             - ""
736             - "- [% ill_bib_title %] - [% ill_bib_author %]"
737             - ""
738             - "is unfortunately unavailable."
739             - ""
740             - "Kind Regards"
741             - ""
742             - "[% branch.branchname %]"
743             - "[% branch.branchaddress1 %]"
744             - "[% branch.branchaddress2 %]"
745             - "[% branch.branchaddress3 %]"
746             - "[% branch.branchcity %]"
747             - "[% branch.branchstate %]"
748             - "[% branch.branchzip %]"
749             - "[% branch.branchphone %]"
750             - "[% branch.branchillemail %]"
751             - "[% branch.branchemail %]"
752
753         - module: ill
754           code: ILL_REQUEST_CANCEL
755           branchcode: ""
756           name: "ILL request cancelled"
757           is_html: 0
758           title: "Interlibrary loan request cancelled"
759           message_transport_type: email
760           lang: default
761           content:
762             - "The patron for interlibrary loans request [% illrequest.illrequest_id %], with the following details, has requested cancellation of this ILL request:"
763             - ""
764             - "[% ill_full_metadata %]"
765
766         - module: ill
767           code: ILL_REQUEST_MODIFIED
768           branchcode: ""
769           name: "ILL request modified"
770           is_html: 0
771           title: "Interlibrary loan request modified"
772           message_transport_type: email
773           lang: default
774           content:
775             - "The patron for interlibrary loans request [% illrequest.illrequest_id %], with the following details, has modified this ILL request:"
776             - ""
777             - "[% ill_full_metadata %]"
778
779         - module: ill
780           code: ILL_PARTNER_REQ
781           branchcode: ""
782           name: "ILL request to partners"
783           is_html: 0
784           title: "Interlibrary loan request to partners"
785           message_transport_type: email
786           lang: default
787           content:
788             - "Dear Sir/Madam,"
789             - ""
790             - "We would like to request an interlibrary loan for a title matching the following description:"
791             - ""
792             - "[% ill_full_metadata %]"
793             - ""
794             - "Please let us know if you are able to supply this to us."
795             - ""
796             - "Kind Regards"
797             - ""
798             - "[% branch.branchname %]"
799             - "[% branch.branchaddress1 %]"
800             - "[% branch.branchaddress2 %]"
801             - "[% branch.branchaddress3 %]"
802             - "[% branch.branchcity %]"
803             - "[% branch.branchstate %]"
804             - "[% branch.branchzip %]"
805             - "[% branch.branchphone %]"
806             - "[% branch.branchillemail %]"
807             - "[% branch.branchemail %]"
808
809         - module: ill
810           code: ILL_PICKUP_READY
811           branchcode: ""
812           name: "ILL request ready for pickup"
813           is_html: 0
814           title: "Interlibrary loan request ready for pickup"
815           message_transport_type: sms
816           lang: default
817           content:
818             - "Dear [% borrower.firstname %] [% borrower.surname %],"
819             - ""
820             - "The Interlibrary loans request number [% illrequest.illrequest_id %] you placed for:"
821             - ""
822             - "- [% ill_bib_title %] - [% ill_bib_author %]"
823             - ""
824             - "is ready for pick up from [% branch.branchname %]."
825             - ""
826             - "Kind Regards"
827             - ""
828             - "[% branch.branchname %]"
829             - "[% branch.branchaddress1 %]"
830             - "[% branch.branchaddress2 %]"
831             - "[% branch.branchaddress3 %]"
832             - "[% branch.branchcity %]"
833             - "[% branch.branchstate %]"
834             - "[% branch.branchzip %]"
835             - "[% branch.branchphone %]"
836             - "[% branch.branchillemail %]"
837             - "[% branch.branchemail %]"
838
839         - module: ill
840           code: ILL_REQUEST_UNAVAIL
841           branchcode: ""
842           name: "ILL request unavailable"
843           is_html: 0
844           title: "Interlibrary loan request unavailable"
845           message_transport_type: sms
846           lang: default
847           content:
848             - "Dear [% borrower.firstname %] [% borrower.surname %],"
849             - ""
850             - "The Interlibrary loans request number [% illrequest.illrequest_id %] you placed for"
851             - ""
852             - "- [% ill_bib_title %] - [% ill_bib_author %]"
853             - ""
854             - "is unfortunately unavailable."
855             - ""
856             - "Kind Regards"
857             - ""
858             - "[% branch.branchname %]"
859             - "[% branch.branchaddress1 %]"
860             - "[% branch.branchaddress2 %]"
861             - "[% branch.branchaddress3 %]"
862             - "[% branch.branchcity %]"
863             - "[% branch.branchstate %]"
864             - "[% branch.branchzip %]"
865             - "[% branch.branchphone %]"
866             - "[% branch.branchillemail %]"
867             - "[% branch.branchemail %]"
868
869         - module: ill
870           code: ILL_REQUEST_CANCEL
871           branchcode: ""
872           name: "ILL request cancelled"
873           is_html: 0
874           title: "Interlibrary loan request cancelled"
875           message_transport_type: sms
876           lang: default
877           content:
878             - "The patron for interlibrary loans request [% illrequest.illrequest_id %], with the following details, has requested cancellation of this ILL request:"
879             - ""
880             - "[% ill_full_metadata %]"
881
882         - module: ill
883           code: ILL_REQUEST_MODIFIED
884           branchcode: ""
885           name: "ILL request modified"
886           is_html: 0
887           title: "Interlibrary loan request modified"
888           message_transport_type: sms
889           lang: default
890           content:
891             - "The patron for interlibrary loans request [% illrequest.illrequest_id %], with the following details, has modified this ILL request:"
892             - ""
893             - "[% ill_full_metadata %]"
894
895         - module: ill
896           code: ILL_PARTNER_REQ
897           branchcode: ""
898           name: "ILL request to partners"
899           is_html: 0
900           title: "Interlibrary loan request to partners"
901           message_transport_type: sms
902           lang: default
903           content:
904             - "Dear Sir/Madam,"
905             - ""
906             - "We would like to request an interlibrary loan for a title matching the following description:"
907             - ""
908             - "[% ill_full_metadata %]"
909             - ""
910             - "Please let us know if you are able to supply this to us."
911             - ""
912             - "Kind Regards"
913             - ""
914             - "[% branch.branchname %]"
915             - "[% branch.branchaddress1 %]"
916             - "[% branch.branchaddress2 %]"
917             - "[% branch.branchaddress3 %]"
918             - "[% branch.branchcity %]"
919             - "[% branch.branchstate %]"
920             - "[% branch.branchzip %]"
921             - "[% branch.branchphone %]"
922             - "[% branch.branchillemail %]"
923             - "[% branch.branchemail %]"
924
925         - module: members
926           code: ACCTDETAILS
927           branchcode: ""
928           name: "Account details template - DEFAULT"
929           is_html: 0
930           title: "Your new Koha account details."
931           message_transport_type: email
932           lang: default
933           content:
934             - "Hello <<borrowers.title>> <<borrowers.firstname>> <<borrowers.surname>>."
935             - ""
936             - "Your new Koha account details are:"
937             - ""
938             - "User:  <<borrowers.userid>>"
939             - "Password: <<borrowers.password>>"
940             - ""
941             - "If you have any problems or questions regarding your account, please contact your Koha Administrator."
942             - ""
943             - "Thank you,"
944             - "Koha Administrator"
945             - "kohaadmin@yoursite.org"
946
947         - module: members
948           code: DISCHARGE
949           branchcode: ""
950           name: "Discharge confirmation"
951           is_html: 1
952           title: "Discharge for <<borrowers.firstname>> <<borrowers.surname>>"
953           message_transport_type: email
954           lang: default
955           content:
956             - ""
957             - "<<today>>"
958             - "<h1>Discharge confirmation</h1>"
959             - "<p><<branches.branchname>> certifies that the following borrower:<br>"
960             - "<<borrowers.firstname>> <<borrowers.surname>> (cardnumber: <<borrowers.cardnumber>>)<br>"
961             - "has returned all items.</p>"
962
963         - module: members
964           code: MEMBERSHIP_EXPIRY
965           branchcode: ""
966           name: "Account expiration"
967           is_html: 0
968           title: "Account expiration"
969           message_transport_type: email
970           lang: default
971           content:
972             - "Dear <<borrowers.title>> <<borrowers.firstname>> <<borrowers.surname>>,"
973             - ""
974             - "Your library card will expire soon, on:"
975             - ""
976             - "<<borrowers.dateexpiry>>"
977             - ""
978             - "Thank you,"
979             - ""
980             - "Librarian"
981             - ""
982             - "<<branches.branchname>>"
983
984         - module: members
985           code: OPAC_REG_VERIFY
986           branchcode: ""
987           name: "OPAC self-registration verification email"
988           is_html: 1
989           title: "Verify your account"
990           message_transport_type: email
991           lang: default
992           content:
993             - "Hello!"
994             - ""
995             - "Your library account has been created. Please verify your email address by clicking this link to complete the signup process:"
996             - ""
997             - "<<OPACBaseURL>>/cgi-bin/koha/opac-registration-verify.pl?token=<<borrower_modifications.verification_token>>"
998             - ""
999             - "If you did not initiate this request, you may safely ignore this one-time message. The request will expire shortly."
1000
1001         - module: members
1002           code: PASSWORD_RESET
1003           branchcode: ""
1004           name: "Online password reset"
1005           is_html: 1
1006           title: "Koha password recovery"
1007           message_transport_type: email
1008           lang: default
1009           content:
1010             - "<html>"
1011             - "<p>This email has been sent in response to your password recovery request for the account <strong><<user>></strong>."
1012             - "</p>"
1013             - "<p>"
1014             - "You can now create your new password using the following link:"
1015             - "<br/><a href=\"<<passwordreseturl>>\"><<passwordreseturl>></a>"
1016             - "</p>"
1017             - "<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>"
1018             - "<p>Thank you.</p>"
1019             - "</html>"
1020             - ""
1021
1022         - module: members
1023           code: SHARE_ACCEPT
1024           branchcode: ""
1025           name: "Notification about an accepted share"
1026           is_html: 0
1027           title: "Share on list <<listname>> accepted"
1028           message_transport_type: email
1029           lang: default
1030           content:
1031             - "Dear patron,"
1032             - ""
1033             - "We want to inform you that <<borrowers.firstname>> <<borrowers.surname>> accepted your invitation to share your list <<listname>> in our library catalog."
1034             - ""
1035             - "Thank you."
1036             - ""
1037             - "Your library."
1038
1039         - module: members
1040           code: SHARE_INVITE
1041           branchcode: ""
1042           name: "Invitation for sharing a list"
1043           is_html: 0
1044           title: "Share list <<listname>>"
1045           message_transport_type: email
1046           lang: default
1047           content:
1048             - "Dear patron,"
1049             - ""
1050             - "One of our patrons, <<borrowers.firstname>> <<borrowers.surname>>, invites you to share a list <<listname>> in our library catalog."
1051             - ""
1052             - "To access this shared list, please click on the following URL or copy-and-paste it into your browser address bar."
1053             - ""
1054             - "<<shareurl>>"
1055             - ""
1056             - "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."
1057             - ""
1058             - "Thank you."
1059             - ""
1060             - "Your library."
1061
1062         - module: orderacquisition
1063           code: ACQORDER
1064           branchcode: ""
1065           name: "Acquisition order"
1066           is_html: 0
1067           title: "Order"
1068           message_transport_type: email
1069           lang: default
1070           content:
1071             - "<<aqbooksellers.name>>"
1072             - "<<aqbooksellers.address1>>"
1073             - "<<aqbooksellers.address2>>"
1074             - "<<aqbooksellers.address3>>"
1075             - "<<aqbooksellers.address4>>"
1076             - "<<aqbooksellers.phone>>"
1077             - ""
1078             - "Please order for the library:"
1079             - ""
1080             - "<order>Ordernumber <<aqorders.ordernumber>> (<<biblio.title>>) (quantity: <<aqorders.quantity>>) ($<<aqorders.listprice>> each).</order>"
1081             - ""
1082             - "Thank you,"
1083             - ""
1084             - "<<branches.branchname>>"
1085
1086         - module: pos
1087           code: RECEIPT
1088           branchcode: ""
1089           name: "Point of sale receipt"
1090           is_html: 0
1091           title: "Receipt"
1092           message_transport_type: print
1093           lang: default
1094           content:
1095             - "[% PROCESS \"accounts.inc\" %]"
1096             - "<table>"
1097             - "[% IF ( LibraryName ) %]"
1098             - " <tr>"
1099             - "    <th colspan=\"2\" class=\"centerednames\">"
1100             - "        <h3>[% LibraryName | html %]</h3>"
1101             - "    </th>"
1102             - " </tr>"
1103             - "[% END %]"
1104             - " <tr>"
1105             - "    <th colspan=\"2\" class=\"centerednames\">"
1106             - "        <h2>[% Branches.GetName( payment.branchcode ) | html %]</h2>"
1107             - "    </th>"
1108             - " </tr>"
1109             - "<tr>"
1110             - "    <th colspan=\"2\" class=\"centerednames\">"
1111             - "        <h3>[% payment.date | $KohaDates %]</h3>"
1112             - "</tr>"
1113             - "<tr>"
1114             - "  <td>Transaction ID: </td>"
1115             - "  <td>[% payment.accountlines_id %]</td>"
1116             - "</tr>"
1117             - "<tr>"
1118             - "  <td>Operator ID: </td>"
1119             - "  <td>[% payment.manager_id %]</td>"
1120             - "</tr>"
1121             - "<tr>"
1122             - "  <td>Payment type: </td>"
1123             - "  <td>[% payment.payment_type %]</td>"
1124             - "</tr>"
1125             - " <tr></tr>"
1126             - " <tr>"
1127             - "    <th colspan=\"2\" class=\"centerednames\">"
1128             - "        <h2><u>Fee receipt</u></h2>"
1129             - "    </th>"
1130             - " </tr>"
1131             - " <tr></tr>"
1132             - " <tr>"
1133             - "    <th>Description of charges</th>"
1134             - "    <th>Amount</th>"
1135             - "  </tr>"
1136             - ""
1137             - "  [% FOREACH offset IN offsets %]"
1138             - "    <tr>"
1139             - "        <td>[% PROCESS account_type_description account=offset.debit %]</td>"
1140             - "        <td>[% offset.amount * -1 | $Price %]</td>"
1141             - "    </tr>"
1142             - "  [% END %]"
1143             - ""
1144             - "<tfoot>"
1145             - "  <tr class=\"highlight\">"
1146             - "    <td>Total: </td>"
1147             - "    <td>[% payment.amount * -1| $Price %]</td>"
1148             - "  </tr>"
1149             - "  <tr>"
1150             - "    <td>Tendered: </td>"
1151             - "    <td>[% collected | $Price %]</td>"
1152             - "  </tr>"
1153             - "  <tr>"
1154             - "    <td>Change: </td>"
1155             - "    <td>[% change | $Price %]</td>"
1156             - "    </tr>"
1157             - "</tfoot>"
1158             - "</table>"
1159
1160         - module: reserves
1161           code: CANCEL_HOLD_ON_LOST
1162           branchcode: ""
1163           name: "Hold has been cancelled"
1164           is_html: 0
1165           title: "Hold has been cancelled"
1166           message_transport_type: email
1167           lang: default
1168           content:
1169             - "Dear [% borrower.firstname %] [% borrower.surname %],"
1170             - ""
1171             - "We regret to inform you, that the following item can not be provided due to it being missing. Your hold was cancelled."
1172             - ""
1173             - "Title: [% biblio.title %]"
1174             - "Author: [% biblio.author %]"
1175             - "Copy: [% item.copynumber %]"
1176             - "Location: [% branch.branchname %]"
1177
1178         - module: reserves
1179           code: HOLD
1180           branchcode: ""
1181           name: "Hold available for pickup"
1182           is_html: 0
1183           title: "Hold available for pickup at <<branches.branchname>>"
1184           message_transport_type: email
1185           lang: default
1186           content:
1187             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
1188             - ""
1189             - "You have a hold available for pickup as of <<reserves.waitingdate>>:"
1190             - ""
1191             - "Title: <<biblio.title>>"
1192             - "Author: <<biblio.author>>"
1193             - "Copy: <<items.copynumber>>"
1194             - "Location: <<branches.branchname>>"
1195             - "<<branches.branchaddress1>>"
1196             - "<<branches.branchaddress2>>"
1197             - "<<branches.branchaddress3>>"
1198             - "<<branches.branchcity>> <<branches.branchzip>>"
1199
1200         - module: reserves
1201           code: HOLD
1202           branchcode: ""
1203           name: "Hold available for pickup"
1204           is_html: 0
1205           title: "Hold available for pickup (print notice)"
1206           message_transport_type: print
1207           lang: default
1208           content:
1209             - "<<branches.branchname>>"
1210             - "<<branches.branchaddress1>>"
1211             - "<<branches.branchaddress2>>"
1212             - ""
1213             - ""
1214             - "Change service requested"
1215             - ""
1216             - ""
1217             - ""
1218             - ""
1219             - ""
1220             - ""
1221             - ""
1222             - "<<borrowers.firstname>> <<borrowers.surname>>"
1223             - "<<borrowers.address>>"
1224             - "<<borrowers.city>> <<borrowers.zipcode>>"
1225             - ""
1226             - ""
1227             - ""
1228             - ""
1229             - ""
1230             - ""
1231             - ""
1232             - ""
1233             - ""
1234             - ""
1235             - "<<borrowers.firstname>> <<borrowers.surname>> <<borrowers.cardnumber>>"
1236             - ""
1237             - "You have a hold available for pickup as of <<reserves.waitingdate>>:"
1238             - ""
1239             - "Title: <<biblio.title>>"
1240             - "Author: <<biblio.author>>"
1241             - "Copy: <<items.copynumber>>"
1242             - ""
1243
1244         - module: reserves
1245           code: HOLDPLACED
1246           branchcode: ""
1247           name: "Hold placed on item"
1248           is_html: 0
1249           title: "Hold placed on item"
1250           message_transport_type: email
1251           lang: default
1252           content:
1253             - "A hold has been placed on the following item : <<biblio.title>> (<<biblio.biblionumber>>) by the user <<borrowers.firstname>> <<borrowers.surname>> (<<borrowers.cardnumber>>)."
1254
1255         - module: reserves
1256           code: HOLD_REMINDER
1257           branchcode: ""
1258           name: "Waiting hold reminder"
1259           is_html: 0
1260           title: "You have waiting holds."
1261           message_transport_type: email
1262           lang: default
1263           content:
1264             - "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 %]"
1265
1266         - module: serial
1267           code: SERIAL_ALERT
1268           branchcode: ""
1269           name: "New serial issue"
1270           is_html: 0
1271           title: "New serial issue is now available"
1272           message_transport_type: email
1273           lang: default
1274           content:
1275             - "<<borrowers.firstname>> <<borrowers.surname>>,"
1276             - ""
1277             - "The following issue is now available:"
1278             - ""
1279             - "<<biblio.title>>, <<biblio.author>> (<<items.barcode>>)"
1280             - ""
1281             - "Please pick it up at your convenience."
1282
1283         - module: suggestions
1284           code: ACCEPTED
1285           branchcode: ""
1286           name: "Suggestion accepted"
1287           is_html: 0
1288           title: "Purchase suggestion accepted"
1289           message_transport_type: email
1290           lang: default
1291           content:
1292             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
1293             - ""
1294             - "You have suggested that the library acquire <<suggestions.title>> by <<suggestions.author>>."
1295             - ""
1296             - "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."
1297             - ""
1298             - "If you have any questions, please email us at <<branches.branchemail>>."
1299             - ""
1300             - "Thank you,"
1301             - ""
1302             - "<<branches.branchname>>"
1303
1304         - module: suggestions
1305           code: AVAILABLE
1306           branchcode: ""
1307           name: "Suggestion available"
1308           is_html: 0
1309           title: "Suggested purchase available"
1310           message_transport_type: email
1311           lang: default
1312           content:
1313             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
1314             - ""
1315             - "You have suggested that the library acquire <<suggestions.title>> by <<suggestions.author>>."
1316             - ""
1317             - "We are pleased to inform you that the item you requested is now part of the collection."
1318             - ""
1319             - "If you have any questions, please email us at <<branches.branchemail>>."
1320             - ""
1321             - "Thank you,"
1322             - ""
1323             - "<<branches.branchname>>"
1324
1325         - module: suggestions
1326           code: NEW_SUGGESTION
1327           branchcode: ""
1328           name: "New suggestion"
1329           is_html: 1
1330           title: "New suggestion"
1331           message_transport_type: email
1332           lang: default
1333           content:
1334             - "<h3>Suggestion pendin    g approval</h3>"
1335             - "    <p><h4>Suggested by</h4>"
1336             - "    <ul>"
1337             - "    <li><<borrowers.firstname>> <<borrowers.surname>></li>"
1338             - "    <li><<borrowers.cardnumber>></li>"
1339             - "    <li><<borrowers.phone>></li>"
1340             - "    <li><<borrowers.email>></li>"
1341             - "    </ul>"
1342             - "    </p>"
1343             - "    <p><h4>Title suggested</h4>"
1344             - "    <ul>"
1345             - "    <li><b>Library:</b> <<branches.branchname>></li>"
1346             - "    <li><b>Title:</b> <<suggestions.title>></li>"
1347             - "    <li><b>Author:</b> <<suggestions.author>></li>"
1348             - "    <li><b>Copyright date:</b> <<suggestions.copyrightdate>></li>"
1349             - "    <li><b>Standard number (ISBN, ISSN or other):</b> <<suggestions.isbn>></li>"
1350             - "    <li><b>Publisher:</b> <<suggestions.publishercode>></li>"
1351             - "    <li><b>Collection title:</b> <<suggestions.collectiontitle>></li>"
1352             - "    <li><b>Publication place:</b> <<suggestions.place>></li>"
1353             - "    <li><b>Quantity:</b> <<suggestions.quantity>></li>"
1354             - "    <li><b>Item type:</b>  <<suggestions.itemtype>></li>"
1355             - "    <li><b>Reason for suggestion:</b> <<suggestions.patronreason>></li>"
1356             - "    <li><b>Notes:</b> <<suggestions.note>></li>"
1357             - "    </ul>"
1358             - "    </p>"
1359
1360         - module: suggestions
1361           code: ORDERED
1362           branchcode: ""
1363           name: "Suggestion ordered"
1364           is_html: 0
1365           title: "Suggested item ordered"
1366           message_transport_type: email
1367           lang: default
1368           content:
1369             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
1370             - ""
1371             - "You have suggested that the library acquire <<suggestions.title>> by <<suggestions.author>>."
1372             - ""
1373             - "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."
1374             - ""
1375             - "You will be notified again when the book is available."
1376             - ""
1377             - "If you have any questions, please email us at <<branches.branchemail>>"
1378             - ""
1379             - "Thank you,"
1380             - ""
1381             - "<<branches.branchname>>"
1382
1383         - module: suggestions
1384           code: REJECTED
1385           branchcode: ""
1386           name: "Suggestion rejected"
1387           is_html: 0
1388           title: "Purchase suggestion declined"
1389           message_transport_type: email
1390           lang: default
1391           content:
1392             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
1393             - ""
1394             - "You have suggested that the library acquire <<suggestions.title>> by <<suggestions.author>>."
1395             - ""
1396             - "The library has reviewed your request today, and has decided not to accept the suggestion at this time."
1397             - ""
1398             - "The reason given is: <<suggestions.reason>>"
1399             - ""
1400             - "If you have any questions, please email us at <<branches.branchemail>>."
1401             - ""
1402             - "Thank you,"
1403             - ""
1404             - "<<branches.branchname>>"
1405
1406         - module: suggestions
1407           code: TO_PROCESS
1408           branchcode: ""
1409           name: "Notify fund owner"
1410           is_html: 0
1411           title: "A suggestion is ready to be processed"
1412           message_transport_type: email
1413           lang: default
1414           content:
1415             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
1416             - ""
1417             - "A new suggestion is ready to be processed: <<suggestions.title>> by <<suggestions.author>>."
1418             - ""
1419             - "Thank you,"
1420             - ""
1421             - "<<branches.branchname>>"
1422
1423         - module: suggestions
1424           code: NOTIFY_MANAGER
1425           branchcode: ""
1426           name: "Notify manager of a suggestion"
1427           is_html: 0
1428           title: "A suggestion has been assigned to you"
1429           message_transport_type: email
1430           lang: default
1431           content:
1432             - "Dear [% borrower.firstname %] [% borrowers.surname %],"
1433             - ""
1434             - "A new suggestion has been assigned to you: [% suggestion.title %]."
1435             - ""
1436             - "Thank you,"
1437             - ""
1438             - "[% branch.branchname %]"
1439
1440         - module: members
1441           code: PROBLEM_REPORT
1442           branchcode: ""
1443           name: "OPAC problem report"
1444           is_html: 0
1445           title: "OPAC problem report"
1446           message_transport_type: email
1447           lang: default
1448           content:
1449             - "Username: <<problem_reports.username>>"
1450             - ""
1451             - "Problem page: <<problem_reports.problempage>>"
1452             - ""
1453             - "Title: <<problem_reports.title>>"
1454             - ""
1455             - "Message: <<problem_reports.content>>"
1456
1457         - module: circulation
1458           code: AUTO_RENEWALS
1459           branchcode: ""
1460           name: "Notification of automatic renewal"
1461           is_html: 0
1462           title: "Automatic renewal notice"
1463           message_transport_type: email
1464           lang: default
1465           content:
1466             - "Dear [% borrower.firstname %] [% borrower.surname %],"
1467             - "[% IF checkout.auto_renew_error %]"
1468             - "The following item, [% biblio.title %], has not been renewed because:"
1469             - "[% IF checkout.auto_renew_error == 'too_many' %]"
1470             - "You have reached the maximum number of checkouts possible."
1471             - "[% ELSIF checkout.auto_renew_error == 'on_reserve' %]"
1472             - "This item is on hold for another patron."
1473             - "[% ELSIF checkout.auto_renew_error == 'restriction' %]"
1474             - "You are currently restricted."
1475             - "[% ELSIF checkout.auto_renew_error == 'overdue' %]"
1476             - "You have overdue items."
1477             - "[% ELSIF checkout.auto_renew_error == 'auto_too_late' %]"
1478             - "It's too late to renew this item."
1479             - "[% ELSIF checkout.auto_renew_error == 'auto_too_much_oweing' %]"
1480             - "Your total unpaid fines are too high."
1481             - "[% ELSIF checkout.auto_renew_error == 'too_unseen' %]"
1482             - "This item must be renewed at the library."
1483             - "[% END %]"
1484             - "[% ELSE %]"
1485             - "The following item, [% biblio.title %], has correctly been renewed and is now due on [% checkout.date_due | $KohaDates as_due_date => 1 %]"
1486             - "[% END %]"
1487
1488         - module: circulation
1489           code: CHECKINSLIP
1490           branchcode: ""
1491           name: "Checkin slip"
1492           is_html: 1
1493           title: "Checkin slip"
1494           message_transport_type: print
1495           lang: default
1496           content:
1497             - "<h3>[% branch.branchname %]</h3>"
1498             - "Checked in items for [% borrower.title %] [% borrower.firstname %] [% borrower.initials %] [% borrower.surname %] <br />"
1499             - "([% borrower.cardnumber %]) <br />"
1500             - ""
1501             - "[% today | $KohaDates %]<br />"
1502             - ""
1503             - "<h4>Checked in today</h4>"
1504             - "[% FOREACH checkin IN old_checkouts %]"
1505             - "[% SET item = checkin.item %]"
1506             - "<p>"
1507             - "[% item.biblio.title %] <br />"
1508             - "Barcode: [% item.barcode %] <br />"
1509             - "</p>"
1510             - "[% END %]"
1511
1512         - module: circulation
1513           code: AUTO_RENEWALS_DGST
1514           branchcode: ""
1515           name: "Notification on auto renewals"
1516           is_html: 0
1517           title: "Auto renewals (Digest)"
1518           message_transport_type: email
1519           lang: default
1520           content:
1521             - "Dear [% borrower.firstname %] [% borrower.surname %],"
1522             - "[% IF error %]"
1523             - "There were [% error %] items that were not renewed."
1524             - "[% END %]"
1525             - "[% IF success %]"
1526             - "There were [% success %] items that were renewed."
1527             - "[% END %]"
1528             - "[% FOREACH checkout IN checkouts %]"
1529             - "[% checkout.item.biblio.title %] : [% checkout.item.barcode %]"
1530             - "[% IF !checkout.auto_renew_error %]"
1531             - "was renewed until [% checkout.date_due | $KohaDates as_due_date => 1%]"
1532             - "[% ELSIF checkout.auto_renew_error == 'too_many' %]"
1533             - "You have reached the maximum number of checkouts possible."
1534             - "[% ELSIF checkout.auto_renew_error == 'on_reserve' %]"
1535             - "This item is on hold for another patron."
1536             - "[% ELSIF checkout.auto_renew_error == 'restriction' %]"
1537             - "You are currently restricted."
1538             - "[% ELSIF checkout.auto_renew_error == 'overdue' %]"
1539             - "You have overdue items."
1540             - "[% ELSIF checkout.auto_renew_error == 'auto_too_late' %]"
1541             - "It's too late to renew this item."
1542             - "[% ELSIF checkout.auto_renew_error == 'auto_too_much_oweing' %]"
1543             - "Your total unpaid fines are too high."
1544             - "[% ELSIF checkout.auto_renew_error == 'too_unseen' %]"
1545             - "This item must be renewed at the library."
1546             - "[% END %]"
1547             - "[% END %]"