Bug 11257: PREDUEDST should have more useful default text
[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             - "You have <<count>> items due"
405
406         - module: circulation
407           code: HOLD_SLIP
408           branchcode: ""
409           name: "Hold slip"
410           is_html: 1
411           title: "Hold slip"
412           message_transport_type: email
413           lang: default
414           content:
415             - "<h5>Date: <<today>></h5>"
416             - ""
417             - "<h3> Transfer to/Hold in <<branches.branchname>></h3>"
418             - ""
419             - "<h3><<borrowers.surname>>, <<borrowers.firstname>></h3>"
420             - ""
421             - "<ul>"
422             - "    <li><<borrowers.cardnumber>></li>"
423             - "    <li><<borrowers.phone>></li>"
424             - "    <li> <<borrowers.address>><br />"
425             - "         <<borrowers.address2>><br />"
426             - "         <<borrowers.city >>  <<borrowers.zipcode>>"
427             - "    </li>"
428             - "    <li><<borrowers.email>></li>"
429             - "</ul>"
430             - "<br />"
431             - "<h3>ITEM ON HOLD</h3>"
432             - "<h4><<biblio.title>></h4>"
433             - "<h5><<biblio.author>></h5>"
434             - "<ul>"
435             - "   <li><<items.barcode>></li>"
436             - "   <li><<items.itemcallnumber>></li>"
437             - "   <li><<reserves.waitingdate>></li>"
438             - "</ul>"
439             - "<p>Notes:"
440             - "<pre><<reserves.reservenotes>></pre>"
441             - "</p>"
442             - ""
443
444         - module: circulation
445           code: ISSUEQSLIP
446           branchcode: ""
447           name: "Issue quick slip"
448           is_html: 1
449           title: "Issue quick slip"
450           message_transport_type: email
451           lang: default
452           content:
453             - "<h3><<branches.branchname>></h3>"
454             - "Checked out to <<borrowers.title>> <<borrowers.firstname>> <<borrowers.initials>> <<borrowers.surname>> <br />"
455             - "(<<borrowers.cardnumber>>) <br />"
456             - ""
457             - "<<today>><br />"
458             - ""
459             - "<h4>Checked out today</h4>"
460             - "<checkedout>"
461             - "<p>"
462             - "<<biblio.title>> <br />"
463             - "Barcode: <<items.barcode>><br />"
464             - "Date due: <<issues.date_due>><br />"
465             - "</p>"
466             - "</checkedout>"
467
468         - module: circulation
469           code: ISSUESLIP
470           branchcode: ""
471           name: "Issue slip"
472           is_html: 1
473           title: "Issue slip"
474           message_transport_type: email
475           lang: default
476           content:
477             - "<h3><<branches.branchname>></h3>"
478             - "Checked out to <<borrowers.title>> <<borrowers.firstname>> <<borrowers.initials>> <<borrowers.surname>> <br />"
479             - "(<<borrowers.cardnumber>>) <br />"
480             - ""
481             - "<<today>><br />"
482             - ""
483             - "<h4>Checked out</h4>"
484             - "<checkedout>"
485             - "<p>"
486             - "<<biblio.title>> <br />"
487             - "Barcode: <<items.barcode>><br />"
488             - "Date due: <<issues.date_due>><br />"
489             - "</p>"
490             - "</checkedout>"
491             - ""
492             - "<h4>Overdues</h4>"
493             - "<overdue>"
494             - "<p>"
495             - "<<biblio.title>> <br />"
496             - "Barcode: <<items.barcode>><br />"
497             - "Date due: <<issues.date_due>><br />"
498             - "</p>"
499             - "</overdue>"
500             - ""
501             - "<hr>"
502             - ""
503             - "<h4 style=\"text-align: center; font-style:italic;\">News</h4>"
504             - "<news>"
505             - "<div class=\"newsitem\">"
506             - "<h5 style=\"margin-bottom: 1px; margin-top: 1px\"><b><<opac_news.title>></b></h5>"
507             - "<p style=\"margin-bottom: 1px; margin-top: 1px\"><<opac_news.content>></p>"
508             - "<p class=\"newsfooter\" style=\"font-size: 8pt; font-style:italic; margin-bottom: 1px; margin-top: 1px\">Posted on <<opac_news.published_on>></p>"
509             - "<hr />"
510             - "</div>"
511             - "</news>"
512
513         - module: circulation
514           code: ODUE
515           branchcode: ""
516           name: "Overdue notice"
517           is_html: 0
518           title: "Item overdue"
519           message_transport_type: email
520           lang: default
521           content:
522             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
523             - ""
524             - "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."
525             - ""
526             - "<<branches.branchname>>"
527             - "<<branches.branchaddress1>>"
528             - "<<branches.branchaddress2>> <<branches.branchaddress3>>"
529             - "Phone: <<branches.branchphone>>"
530             - "Fax: <<branches.branchfax>>"
531             - "Email: <<branches.branchemail>>"
532             - ""
533             - "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."
534             - ""
535             - "The following item(s) is/are currently overdue:"
536             - ""
537             - "<item>\"<<biblio.title>>\" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item>"
538             - ""
539             - "Thank-you for your prompt attention to this matter."
540             - ""
541             - "<<branches.branchname>> Staff"
542             - ""
543
544         - module: circulation
545           code: OVERDUES_SLIP
546           branchcode: ""
547           name: "Overdues slip"
548           is_html: 0
549           title: "Overdues slip"
550           message_transport_type: print
551           lang: default
552           content:
553             - "The following item(s) is/are currently overdue:"
554             - ""
555             - "<item>\"<<biblio.title>>\" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item>"
556             - ""
557
558         - module: circulation
559           code: PREDUE
560           branchcode: ""
561           name: "Advance notice of item due"
562           is_html: 0
563           title: "Advance notice of item due"
564           message_transport_type: email
565           lang: default
566           content:
567             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
568             - ""
569             - "The following item will be due soon:"
570             - ""
571             - "<<biblio.title>>, <<biblio.author>> (<<items.barcode>>)"
572
573         - module: circulation
574           code: PREDUEDGST
575           branchcode: ""
576           name: "Advance notice of item due (digest)"
577           is_html: 0
578           title: "Advance notice of item due"
579           message_transport_type: email
580           lang: default
581           content:
582             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
583             - ""
584             - "The following item(s) will be due soon:"
585             - ""
586             - "<<items.content>>"
587             - ""
588             - "Thank you."
589
590         - module: circulation
591           code: RENEWAL
592           branchcode: ""
593           name: "Item renewals"
594           is_html: 0
595           title: "Item renewals"
596           message_transport_type: email
597           lang: default
598           content:
599             - "The following items have been renewed:"
600             - "----"
601             - "<<biblio.title>>"
602             - "----"
603             - "Thank you for visiting <<branches.branchname>>."
604
605         - module: circulation
606           code: SR_SLIP
607           branchcode: ""
608           name: "Stock rotation slip"
609           is_html: 0
610           title: "Stock rotation report"
611           message_transport_type: email
612           lang: default
613           content:
614             - "Stock rotation report for [% branch.name %]:"
615             - ""
616             - "[% IF branch.items.size %][% branch.items.size %] items to be processed for this branch."
617             - "[% ELSE %]No items to be processed for this branch"
618             - "[% END %][% FOREACH item IN branch.items %][% IF item.reason != 'in-demand' %]Title: [% item.title %]"
619             - "Author: [% item.author %]"
620             - "Callnumber: [% item.callnumber %]"
621             - "Location: [% item.location %]"
622             - "Barcode: [% item.barcode %]"
623             - "On loan?: [% item.onloan %]"
624             - "Status: [% item.reason %]"
625             - "Current library: [% item.branch.branchname %] [% item.branch.branchcode %]"
626             - ""
627             - "[% END %][% END %]"
628
629         - module: circulation
630           code: TRANSFERSLIP
631           branchcode: ""
632           name: "Transfer slip"
633           is_html: 1
634           title: "Transfer slip"
635           message_transport_type: email
636           lang: default
637           content:
638             - "<h5>Date: <<today>></h5>"
639             - ""
640             - "<h3>Transfer to <<branches.branchname>></h3>"
641             - ""
642             - "<h3>ITEM</h3>"
643             - "<h4><<biblio.title>></h4>"
644             - "<h5><<biblio.author>></h5>"
645             - "<ul>"
646             - "   <li><<items.barcode>></li>"
647             - "   <li><<items.itemcallnumber>></li>"
648             - "</ul>"
649
650         - module: claimacquisition
651           code: ACQCLAIM
652           branchcode: ""
653           name: "Acquisition claim"
654           is_html: 0
655           title: "Item not received"
656           message_transport_type: email
657           lang: default
658           content:
659             - "<<aqbooksellers.name>>"
660             - "<<aqbooksellers.address1>>"
661             - "<<aqbooksellers.address2>>"
662             - "<<aqbooksellers.address3>>"
663             - "<<aqbooksellers.address4>>"
664             - "<<aqbooksellers.phone>>"
665             - ""
666             - "<order>Ordernumber <<aqorders.ordernumber>> (<<biblio.title>>) (<<aqorders.quantity>> ordered) ($<<aqorders.listprice>> each) has not been received.</order>"
667
668         - module: ill
669           code: ILL_PICKUP_READY
670           branchcode: ""
671           name: "ILL request ready for pickup"
672           is_html: 0
673           title: "Interlibrary loan request ready for pickup"
674           message_transport_type: email
675           lang: default
676           content:
677             - "Dear [% borrower.firstname %] [% borrower.surname %],"
678             - ""
679             - "The Interlibrary loans request number [% illrequest.illrequest_id %] you placed for:"
680             - ""
681             - "- [% ill_bib_title %] - [% ill_bib_author %]"
682             - ""
683             - "is ready for pick up from [% branch.branchname %]."
684             - ""
685             - "Kind Regards"
686             - ""
687             - "[% branch.branchname %]"
688             - "[% branch.branchaddress1 %]"
689             - "[% branch.branchaddress2 %]"
690             - "[% branch.branchaddress3 %]"
691             - "[% branch.branchcity %]"
692             - "[% branch.branchstate %]"
693             - "[% branch.branchzip %]"
694             - "[% branch.branchphone %]"
695             - "[% branch.branchillemail %]"
696             - "[% branch.branchemail %]"
697
698         - module: ill
699           code: ILL_REQUEST_UNAVAIL
700           branchcode: ""
701           name: "ILL request unavailable"
702           is_html: 0
703           title: "Interlibrary loan request unavailable"
704           message_transport_type: email
705           lang: default
706           content:
707             - "Dear [% borrower.firstname %] [% borrower.surname %],"
708             - ""
709             - "The Interlibrary loans request number [% illrequest.illrequest_id %] you placed for"
710             - ""
711             - "- [% ill_bib_title %] - [% ill_bib_author %]"
712             - ""
713             - "is unfortunately unavailable."
714             - ""
715             - "Kind Regards"
716             - ""
717             - "[% branch.branchname %]"
718             - "[% branch.branchaddress1 %]"
719             - "[% branch.branchaddress2 %]"
720             - "[% branch.branchaddress3 %]"
721             - "[% branch.branchcity %]"
722             - "[% branch.branchstate %]"
723             - "[% branch.branchzip %]"
724             - "[% branch.branchphone %]"
725             - "[% branch.branchillemail %]"
726             - "[% branch.branchemail %]"
727
728         - module: ill
729           code: ILL_REQUEST_CANCEL
730           branchcode: ""
731           name: "ILL request cancelled"
732           is_html: 0
733           title: "Interlibrary loan request cancelled"
734           message_transport_type: email
735           lang: default
736           content:
737             - "The patron for interlibrary loans request [% illrequest.illrequest_id %], with the following details, has requested cancellation of this ILL request:"
738             - ""
739             - "[% ill_full_metadata %]"
740
741         - module: ill
742           code: ILL_REQUEST_MODIFIED
743           branchcode: ""
744           name: "ILL request modified"
745           is_html: 0
746           title: "Interlibrary loan request modified"
747           message_transport_type: email
748           lang: default
749           content:
750             - "The patron for interlibrary loans request [% illrequest.illrequest_id %], with the following details, has modified this ILL request:"
751             - ""
752             - "[% ill_full_metadata %]"
753
754         - module: ill
755           code: ILL_PARTNER_REQ
756           branchcode: ""
757           name: "ILL request to partners"
758           is_html: 0
759           title: "Interlibrary loan request to partners"
760           message_transport_type: email
761           lang: default
762           content:
763             - "Dear Sir/Madam,"
764             - ""
765             - "We would like to request an interlibrary loan for a title matching the following description:"
766             - ""
767             - "[% ill_full_metadata %]"
768             - ""
769             - "Please let us know if you are able to supply this to us."
770             - ""
771             - "Kind Regards"
772             - ""
773             - "[% branch.branchname %]"
774             - "[% branch.branchaddress1 %]"
775             - "[% branch.branchaddress2 %]"
776             - "[% branch.branchaddress3 %]"
777             - "[% branch.branchcity %]"
778             - "[% branch.branchstate %]"
779             - "[% branch.branchzip %]"
780             - "[% branch.branchphone %]"
781             - "[% branch.branchillemail %]"
782             - "[% branch.branchemail %]"
783
784         - module: ill
785           code: ILL_PICKUP_READY
786           branchcode: ""
787           name: "ILL request ready for pickup"
788           is_html: 0
789           title: "Interlibrary loan request ready for pickup"
790           message_transport_type: sms
791           lang: default
792           content:
793             - "Dear [% borrower.firstname %] [% borrower.surname %],"
794             - ""
795             - "The Interlibrary loans request number [% illrequest.illrequest_id %] you placed for:"
796             - ""
797             - "- [% ill_bib_title %] - [% ill_bib_author %]"
798             - ""
799             - "is ready for pick up from [% branch.branchname %]."
800             - ""
801             - "Kind Regards"
802             - ""
803             - "[% branch.branchname %]"
804             - "[% branch.branchaddress1 %]"
805             - "[% branch.branchaddress2 %]"
806             - "[% branch.branchaddress3 %]"
807             - "[% branch.branchcity %]"
808             - "[% branch.branchstate %]"
809             - "[% branch.branchzip %]"
810             - "[% branch.branchphone %]"
811             - "[% branch.branchillemail %]"
812             - "[% branch.branchemail %]"
813
814         - module: ill
815           code: ILL_REQUEST_UNAVAIL
816           branchcode: ""
817           name: "ILL request unavailable"
818           is_html: 0
819           title: "Interlibrary loan request unavailable"
820           message_transport_type: sms
821           lang: default
822           content:
823             - "Dear [% borrower.firstname %] [% borrower.surname %],"
824             - ""
825             - "The Interlibrary loans request number [% illrequest.illrequest_id %] you placed for"
826             - ""
827             - "- [% ill_bib_title %] - [% ill_bib_author %]"
828             - ""
829             - "is unfortunately unavailable."
830             - ""
831             - "Kind Regards"
832             - ""
833             - "[% branch.branchname %]"
834             - "[% branch.branchaddress1 %]"
835             - "[% branch.branchaddress2 %]"
836             - "[% branch.branchaddress3 %]"
837             - "[% branch.branchcity %]"
838             - "[% branch.branchstate %]"
839             - "[% branch.branchzip %]"
840             - "[% branch.branchphone %]"
841             - "[% branch.branchillemail %]"
842             - "[% branch.branchemail %]"
843
844         - module: ill
845           code: ILL_REQUEST_CANCEL
846           branchcode: ""
847           name: "ILL request cancelled"
848           is_html: 0
849           title: "Interlibrary loan request cancelled"
850           message_transport_type: sms
851           lang: default
852           content:
853             - "The patron for interlibrary loans request [% illrequest.illrequest_id %], with the following details, has requested cancellation of this ILL request:"
854             - ""
855             - "[% ill_full_metadata %]"
856
857         - module: ill
858           code: ILL_REQUEST_MODIFIED
859           branchcode: ""
860           name: "ILL request modified"
861           is_html: 0
862           title: "Interlibrary loan request modified"
863           message_transport_type: sms
864           lang: default
865           content:
866             - "The patron for interlibrary loans request [% illrequest.illrequest_id %], with the following details, has modified this ILL request:"
867             - ""
868             - "[% ill_full_metadata %]"
869
870         - module: ill
871           code: ILL_PARTNER_REQ
872           branchcode: ""
873           name: "ILL request to partners"
874           is_html: 0
875           title: "Interlibrary loan request to partners"
876           message_transport_type: sms
877           lang: default
878           content:
879             - "Dear Sir/Madam,"
880             - ""
881             - "We would like to request an interlibrary loan for a title matching the following description:"
882             - ""
883             - "[% ill_full_metadata %]"
884             - ""
885             - "Please let us know if you are able to supply this to us."
886             - ""
887             - "Kind Regards"
888             - ""
889             - "[% branch.branchname %]"
890             - "[% branch.branchaddress1 %]"
891             - "[% branch.branchaddress2 %]"
892             - "[% branch.branchaddress3 %]"
893             - "[% branch.branchcity %]"
894             - "[% branch.branchstate %]"
895             - "[% branch.branchzip %]"
896             - "[% branch.branchphone %]"
897             - "[% branch.branchillemail %]"
898             - "[% branch.branchemail %]"
899
900         - module: members
901           code: ACCTDETAILS
902           branchcode: ""
903           name: "Account details template - DEFAULT"
904           is_html: 0
905           title: "Your new Koha account details."
906           message_transport_type: email
907           lang: default
908           content:
909             - "Hello <<borrowers.title>> <<borrowers.firstname>> <<borrowers.surname>>."
910             - ""
911             - "Your new Koha account details are:"
912             - ""
913             - "User:  <<borrowers.userid>>"
914             - "Password: <<borrowers.password>>"
915             - ""
916             - "If you have any problems or questions regarding your account, please contact your Koha Administrator."
917             - ""
918             - "Thank you,"
919             - "Koha Administrator"
920             - "kohaadmin@yoursite.org"
921
922         - module: members
923           code: DISCHARGE
924           branchcode: ""
925           name: "Discharge confirmation"
926           is_html: 1
927           title: "Discharge for <<borrowers.firstname>> <<borrowers.surname>>"
928           message_transport_type: email
929           lang: default
930           content:
931             - ""
932             - "<<today>>"
933             - "<h1>Discharge confirmation</h1>"
934             - "<p><<branches.branchname>> certifies that the following borrower:<br>"
935             - "<<borrowers.firstname>> <<borrowers.surname>> (cardnumber: <<borrowers.cardnumber>>)<br>"
936             - "has returned all items.</p>"
937
938         - module: members
939           code: MEMBERSHIP_EXPIRY
940           branchcode: ""
941           name: "Account expiration"
942           is_html: 0
943           title: "Account expiration"
944           message_transport_type: email
945           lang: default
946           content:
947             - "Dear <<borrowers.title>> <<borrowers.firstname>> <<borrowers.surname>>,"
948             - ""
949             - "Your library card will expire soon, on:"
950             - ""
951             - "<<borrowers.dateexpiry>>"
952             - ""
953             - "Thank you,"
954             - ""
955             - "Librarian"
956             - ""
957             - "<<branches.branchname>>"
958
959         - module: members
960           code: OPAC_REG_VERIFY
961           branchcode: ""
962           name: "OPAC self-registration verification email"
963           is_html: 1
964           title: "Verify your account"
965           message_transport_type: email
966           lang: default
967           content:
968             - "Hello!"
969             - ""
970             - "Your library account has been created. Please verify your email address by clicking this link to complete the signup process:"
971             - ""
972             - "<<OPACBaseURL>>/cgi-bin/koha/opac-registration-verify.pl?token=<<borrower_modifications.verification_token>>"
973             - ""
974             - "If you did not initiate this request, you may safely ignore this one-time message. The request will expire shortly."
975
976         - module: members
977           code: PASSWORD_RESET
978           branchcode: ""
979           name: "Online password reset"
980           is_html: 1
981           title: "Koha password recovery"
982           message_transport_type: email
983           lang: default
984           content:
985             - "<html>"
986             - "<p>This email has been sent in response to your password recovery request for the account <strong><<user>></strong>."
987             - "</p>"
988             - "<p>"
989             - "You can now create your new password using the following link:"
990             - "<br/><a href=\"<<passwordreseturl>>\"><<passwordreseturl>></a>"
991             - "</p>"
992             - "<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>"
993             - "<p>Thank you.</p>"
994             - "</html>"
995             - ""
996
997         - module: members
998           code: SHARE_ACCEPT
999           branchcode: ""
1000           name: "Notification about an accepted share"
1001           is_html: 0
1002           title: "Share on list <<listname>> accepted"
1003           message_transport_type: email
1004           lang: default
1005           content:
1006             - "Dear patron,"
1007             - ""
1008             - "We want to inform you that <<borrowers.firstname>> <<borrowers.surname>> accepted your invitation to share your list <<listname>> in our library catalog."
1009             - ""
1010             - "Thank you."
1011             - ""
1012             - "Your library."
1013
1014         - module: members
1015           code: SHARE_INVITE
1016           branchcode: ""
1017           name: "Invitation for sharing a list"
1018           is_html: 0
1019           title: "Share list <<listname>>"
1020           message_transport_type: email
1021           lang: default
1022           content:
1023             - "Dear patron,"
1024             - ""
1025             - "One of our patrons, <<borrowers.firstname>> <<borrowers.surname>>, invites you to share a list <<listname>> in our library catalog."
1026             - ""
1027             - "To access this shared list, please click on the following URL or copy-and-paste it into your browser address bar."
1028             - ""
1029             - "<<shareurl>>"
1030             - ""
1031             - "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."
1032             - ""
1033             - "Thank you."
1034             - ""
1035             - "Your library."
1036
1037         - module: orderacquisition
1038           code: ACQORDER
1039           branchcode: ""
1040           name: "Acquisition order"
1041           is_html: 0
1042           title: "Order"
1043           message_transport_type: email
1044           lang: default
1045           content:
1046             - "<<aqbooksellers.name>>"
1047             - "<<aqbooksellers.address1>>"
1048             - "<<aqbooksellers.address2>>"
1049             - "<<aqbooksellers.address3>>"
1050             - "<<aqbooksellers.address4>>"
1051             - "<<aqbooksellers.phone>>"
1052             - ""
1053             - "Please order for the library:"
1054             - ""
1055             - "<order>Ordernumber <<aqorders.ordernumber>> (<<biblio.title>>) (quantity: <<aqorders.quantity>>) ($<<aqorders.listprice>> each).</order>"
1056             - ""
1057             - "Thank you,"
1058             - ""
1059             - "<<branches.branchname>>"
1060
1061         - module: pos
1062           code: RECEIPT
1063           branchcode: ""
1064           name: "Point of sale receipt"
1065           is_html: 0
1066           title: "Receipt"
1067           message_transport_type: print
1068           lang: default
1069           content:
1070             - "[% PROCESS \"accounts.inc\" %]"
1071             - "<table>"
1072             - "[% IF ( LibraryName ) %]"
1073             - " <tr>"
1074             - "    <th colspan=\"2\" class=\"centerednames\">"
1075             - "        <h3>[% LibraryName | html %]</h3>"
1076             - "    </th>"
1077             - " </tr>"
1078             - "[% END %]"
1079             - " <tr>"
1080             - "    <th colspan=\"2\" class=\"centerednames\">"
1081             - "        <h2>[% Branches.GetName( payment.branchcode ) | html %]</h2>"
1082             - "    </th>"
1083             - " </tr>"
1084             - "<tr>"
1085             - "    <th colspan=\"2\" class=\"centerednames\">"
1086             - "        <h3>[% payment.date | $KohaDates %]</h3>"
1087             - "</tr>"
1088             - "<tr>"
1089             - "  <td>Transaction ID: </td>"
1090             - "  <td>[% payment.accountlines_id %]</td>"
1091             - "</tr>"
1092             - "<tr>"
1093             - "  <td>Operator ID: </td>"
1094             - "  <td>[% payment.manager_id %]</td>"
1095             - "</tr>"
1096             - "<tr>"
1097             - "  <td>Payment type: </td>"
1098             - "  <td>[% payment.payment_type %]</td>"
1099             - "</tr>"
1100             - " <tr></tr>"
1101             - " <tr>"
1102             - "    <th colspan=\"2\" class=\"centerednames\">"
1103             - "        <h2><u>Fee receipt</u></h2>"
1104             - "    </th>"
1105             - " </tr>"
1106             - " <tr></tr>"
1107             - " <tr>"
1108             - "    <th>Description of charges</th>"
1109             - "    <th>Amount</th>"
1110             - "  </tr>"
1111             - ""
1112             - "  [% FOREACH offset IN offsets %]"
1113             - "    <tr>"
1114             - "        <td>[% PROCESS account_type_description account=offset.debit %]</td>"
1115             - "        <td>[% offset.amount * -1 | $Price %]</td>"
1116             - "    </tr>"
1117             - "  [% END %]"
1118             - ""
1119             - "<tfoot>"
1120             - "  <tr class=\"highlight\">"
1121             - "    <td>Total: </td>"
1122             - "    <td>[% payment.amount * -1| $Price %]</td>"
1123             - "  </tr>"
1124             - "  <tr>"
1125             - "    <td>Tendered: </td>"
1126             - "    <td>[% collected | $Price %]</td>"
1127             - "  </tr>"
1128             - "  <tr>"
1129             - "    <td>Change: </td>"
1130             - "    <td>[% change | $Price %]</td>"
1131             - "    </tr>"
1132             - "</tfoot>"
1133             - "</table>"
1134
1135         - module: reserves
1136           code: CANCEL_HOLD_ON_LOST
1137           branchcode: ""
1138           name: "Hold has been cancelled"
1139           is_html: 0
1140           title: "Hold has been cancelled"
1141           message_transport_type: email
1142           lang: default
1143           content:
1144             - "Dear [% borrower.firstname %] [% borrower.surname %],"
1145             - ""
1146             - "We regret to inform you, that the following item can not be provided due to it being missing. Your hold was cancelled."
1147             - ""
1148             - "Title: [% biblio.title %]"
1149             - "Author: [% biblio.author %]"
1150             - "Copy: [% item.copynumber %]"
1151             - "Location: [% branch.branchname %]"
1152
1153         - module: reserves
1154           code: HOLD
1155           branchcode: ""
1156           name: "Hold available for pickup"
1157           is_html: 0
1158           title: "Hold available for pickup at <<branches.branchname>>"
1159           message_transport_type: email
1160           lang: default
1161           content:
1162             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
1163             - ""
1164             - "You have a hold available for pickup as of <<reserves.waitingdate>>:"
1165             - ""
1166             - "Title: <<biblio.title>>"
1167             - "Author: <<biblio.author>>"
1168             - "Copy: <<items.copynumber>>"
1169             - "Location: <<branches.branchname>>"
1170             - "<<branches.branchaddress1>>"
1171             - "<<branches.branchaddress2>>"
1172             - "<<branches.branchaddress3>>"
1173             - "<<branches.branchcity>> <<branches.branchzip>>"
1174
1175         - module: reserves
1176           code: HOLD
1177           branchcode: ""
1178           name: "Hold available for pickup"
1179           is_html: 0
1180           title: "Hold available for pickup (print notice)"
1181           message_transport_type: print
1182           lang: default
1183           content:
1184             - "<<branches.branchname>>"
1185             - "<<branches.branchaddress1>>"
1186             - "<<branches.branchaddress2>>"
1187             - ""
1188             - ""
1189             - "Change service requested"
1190             - ""
1191             - ""
1192             - ""
1193             - ""
1194             - ""
1195             - ""
1196             - ""
1197             - "<<borrowers.firstname>> <<borrowers.surname>>"
1198             - "<<borrowers.address>>"
1199             - "<<borrowers.city>> <<borrowers.zipcode>>"
1200             - ""
1201             - ""
1202             - ""
1203             - ""
1204             - ""
1205             - ""
1206             - ""
1207             - ""
1208             - ""
1209             - ""
1210             - "<<borrowers.firstname>> <<borrowers.surname>> <<borrowers.cardnumber>>"
1211             - ""
1212             - "You have a hold available for pickup as of <<reserves.waitingdate>>:"
1213             - ""
1214             - "Title: <<biblio.title>>"
1215             - "Author: <<biblio.author>>"
1216             - "Copy: <<items.copynumber>>"
1217             - ""
1218
1219         - module: reserves
1220           code: HOLDPLACED
1221           branchcode: ""
1222           name: "Hold placed on item"
1223           is_html: 0
1224           title: "Hold placed on item"
1225           message_transport_type: email
1226           lang: default
1227           content:
1228             - "A hold has been placed on the following item : <<biblio.title>> (<<biblio.biblionumber>>) by the user <<borrowers.firstname>> <<borrowers.surname>> (<<borrowers.cardnumber>>)."
1229
1230         - module: serial
1231           code: SERIAL_ALERT
1232           branchcode: ""
1233           name: "New serial issue"
1234           is_html: 0
1235           title: "New serial issue is now available"
1236           message_transport_type: email
1237           lang: default
1238           content:
1239             - "<<borrowers.firstname>> <<borrowers.surname>>,"
1240             - ""
1241             - "The following issue is now available:"
1242             - ""
1243             - "<<biblio.title>>, <<biblio.author>> (<<items.barcode>>)"
1244             - ""
1245             - "Please pick it up at your convenience."
1246
1247         - module: suggestions
1248           code: ACCEPTED
1249           branchcode: ""
1250           name: "Suggestion accepted"
1251           is_html: 0
1252           title: "Purchase suggestion accepted"
1253           message_transport_type: email
1254           lang: default
1255           content:
1256             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
1257             - ""
1258             - "You have suggested that the library acquire <<suggestions.title>> by <<suggestions.author>>."
1259             - ""
1260             - "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."
1261             - ""
1262             - "If you have any questions, please email us at <<branches.branchemail>>."
1263             - ""
1264             - "Thank you,"
1265             - ""
1266             - "<<branches.branchname>>"
1267
1268         - module: suggestions
1269           code: AVAILABLE
1270           branchcode: ""
1271           name: "Suggestion available"
1272           is_html: 0
1273           title: "Suggested purchase available"
1274           message_transport_type: email
1275           lang: default
1276           content:
1277             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
1278             - ""
1279             - "You have suggested that the library acquire <<suggestions.title>> by <<suggestions.author>>."
1280             - ""
1281             - "We are pleased to inform you that the item you requested is now part of the collection."
1282             - ""
1283             - "If you have any questions, please email us at <<branches.branchemail>>."
1284             - ""
1285             - "Thank you,"
1286             - ""
1287             - "<<branches.branchname>>"
1288
1289         - module: suggestions
1290           code: NEW_SUGGESTION
1291           branchcode: ""
1292           name: "New suggestion"
1293           is_html: 1
1294           title: "New suggestion"
1295           message_transport_type: email
1296           lang: default
1297           content:
1298             - "<h3>Suggestion pendin    g approval</h3>"
1299             - "    <p><h4>Suggested by</h4>"
1300             - "    <ul>"
1301             - "    <li><<borrowers.firstname>> <<borrowers.surname>></li>"
1302             - "    <li><<borrowers.cardnumber>></li>"
1303             - "    <li><<borrowers.phone>></li>"
1304             - "    <li><<borrowers.email>></li>"
1305             - "    </ul>"
1306             - "    </p>"
1307             - "    <p><h4>Title suggested</h4>"
1308             - "    <ul>"
1309             - "    <li><b>Library:</b> <<branches.branchname>></li>"
1310             - "    <li><b>Title:</b> <<suggestions.title>></li>"
1311             - "    <li><b>Author:</b> <<suggestions.author>></li>"
1312             - "    <li><b>Copyright date:</b> <<suggestions.copyrightdate>></li>"
1313             - "    <li><b>Standard number (ISBN, ISSN or other):</b> <<suggestions.isbn>></li>"
1314             - "    <li><b>Publisher:</b> <<suggestions.publishercode>></li>"
1315             - "    <li><b>Collection title:</b> <<suggestions.collectiontitle>></li>"
1316             - "    <li><b>Publication place:</b> <<suggestions.place>></li>"
1317             - "    <li><b>Quantity:</b> <<suggestions.quantity>></li>"
1318             - "    <li><b>Item type:</b>  <<suggestions.itemtype>></li>"
1319             - "    <li><b>Reason for suggestion:</b> <<suggestions.patronreason>></li>"
1320             - "    <li><b>Notes:</b> <<suggestions.note>></li>"
1321             - "    </ul>"
1322             - "    </p>"
1323
1324         - module: suggestions
1325           code: ORDERED
1326           branchcode: ""
1327           name: "Suggestion ordered"
1328           is_html: 0
1329           title: "Suggested item ordered"
1330           message_transport_type: email
1331           lang: default
1332           content:
1333             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
1334             - ""
1335             - "You have suggested that the library acquire <<suggestions.title>> by <<suggestions.author>>."
1336             - ""
1337             - "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."
1338             - ""
1339             - "You will be notified again when the book is available."
1340             - ""
1341             - "If you have any questions, please email us at <<branches.branchemail>>"
1342             - ""
1343             - "Thank you,"
1344             - ""
1345             - "<<branches.branchname>>"
1346
1347         - module: suggestions
1348           code: REJECTED
1349           branchcode: ""
1350           name: "Suggestion rejected"
1351           is_html: 0
1352           title: "Purchase suggestion declined"
1353           message_transport_type: email
1354           lang: default
1355           content:
1356             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
1357             - ""
1358             - "You have suggested that the library acquire <<suggestions.title>> by <<suggestions.author>>."
1359             - ""
1360             - "The library has reviewed your request today, and has decided not to accept the suggestion at this time."
1361             - ""
1362             - "The reason given is: <<suggestions.reason>>"
1363             - ""
1364             - "If you have any questions, please email us at <<branches.branchemail>>."
1365             - ""
1366             - "Thank you,"
1367             - ""
1368             - "<<branches.branchname>>"
1369
1370         - module: suggestions
1371           code: TO_PROCESS
1372           branchcode: ""
1373           name: "Notify fund owner"
1374           is_html: 0
1375           title: "A suggestion is ready to be processed"
1376           message_transport_type: email
1377           lang: default
1378           content:
1379             - "Dear <<borrowers.firstname>> <<borrowers.surname>>,"
1380             - ""
1381             - "A new suggestion is ready to be processed: <<suggestions.title>> by <<suggestions.author>>."
1382             - ""
1383             - "Thank you,"
1384             - ""
1385             - "<<branches.branchname>>"
1386
1387         - module: suggestions
1388           code: NOTIFY_MANAGER
1389           branchcode: ""
1390           name: "Notify manager of a suggestion"
1391           is_html: 0
1392           title: "A suggestion has been assigned to you"
1393           message_transport_type: email
1394           lang: default
1395           content:
1396             - "Dear [% borrower.firstname %] [% borrowers.surname %],"
1397             - ""
1398             - "A new suggestion has been assigned to you: [% suggestion.title %]."
1399             - ""
1400             - "Thank you,"
1401             - ""
1402             - "[% branch.branchname %]"
1403
1404         - module: members
1405           code: PROBLEM_REPORT
1406           branchcode: ""
1407           name: "OPAC problem report"
1408           is_html: 0
1409           title: "OPAC problem report"
1410           message_transport_type: email
1411           lang: default
1412           content:
1413             - "Username: <<problem_reports.username>>"
1414             - ""
1415             - "Problem page: <<problem_reports.problempage>>"
1416             - ""
1417             - "Title: <<problem_reports.title>>"
1418             - ""
1419             - "Message: <<problem_reports.content>>"
1420
1421         - module: circulation
1422           code: AUTO_RENEWALS
1423           branchcode: ""
1424           name: "Notification of automatic renewal"
1425           is_html: 0
1426           title: "Automatic renewal notice"
1427           message_transport_type: email
1428           lang: default
1429           content:
1430             - "Dear [% borrower.firstname %] [% borrower.surname %],"
1431             - "[% IF checkout.auto_renew_error %]"
1432             - "The following item, [% biblio.title %], has not been renewed because:"
1433             - "[% IF checkout.auto_renew_error == 'too_many' %]"
1434             - "You have reached the maximum number of checkouts possible."
1435             - "[% ELSIF checkout.auto_renew_error == 'on_reserve' %]"
1436             - "This item is on hold for another patron."
1437             - "[% ELSIF checkout.auto_renew_error == 'restriction' %]"
1438             - "You are currently restricted."
1439             - "[% ELSIF checkout.auto_renew_error == 'overdue' %]"
1440             - "You have overdue items."
1441             - "[% ELSIF checkout.auto_renew_error == 'auto_too_late' %]"
1442             - "It's too late to renew this item."
1443             - "[% ELSIF checkout.auto_renew_error == 'auto_too_much_oweing' %]"
1444             - "Your total unpaid fines are too high."
1445             - "[% ELSIF checkout.auto_renew_error == 'too_unseen' %]"
1446             - "This item must be renewed at the library."
1447             - "[% END %]"
1448             - "[% ELSE %]"
1449             - "The following item, [% biblio.title %], has correctly been renewed and is now due on [% checkout.date_due | $KohaDates as_due_date => 1 %]"
1450             - "[% END %]"