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