Lines 738-749
tables:
Link Here
|
738 |
message_transport_type: email |
738 |
message_transport_type: email |
739 |
lang: default |
739 |
lang: default |
740 |
content: |
740 |
content: |
741 |
- "Dear <<borrowers.firstname>> <<borrowers.surname>>," |
741 |
- "Dear [% borrower.firstname %] [% borrower.surname %]," |
742 |
- "" |
742 |
- "" |
743 |
- "The following item(s) are now due:" |
743 |
- "The following item(s) are now due:" |
744 |
- "" |
744 |
- "[% FOREACH checkout IN checkouts %]" |
745 |
- "<<items.content>>" |
745 |
- "[% checkout.title %], [% checkout.author %] ([% checkout.barcode %])" |
746 |
- "" |
746 |
- "[% END %]" |
747 |
- "Thank you." |
747 |
- "Thank you." |
748 |
|
748 |
|
749 |
- module: circulation |
749 |
- module: circulation |
Lines 755-763
tables:
Link Here
|
755 |
message_transport_type: sms |
755 |
message_transport_type: sms |
756 |
lang: default |
756 |
lang: default |
757 |
content: |
757 |
content: |
758 |
- "Dear <<borrowers.firstname>> <<borrowers.surname>>," |
758 |
- "Dear [% borrower.firstname %] [% borrower.surname %]," |
759 |
- "" |
759 |
- "" |
760 |
- "You have <<count>> item(s) that are now due" |
760 |
- "You have [% checkouts.size %] item(s) that are now due" |
761 |
- "" |
761 |
- "" |
762 |
- "Thank you." |
762 |
- "Thank you." |
763 |
|
763 |
|
Lines 954-965
tables:
Link Here
|
954 |
message_transport_type: email |
954 |
message_transport_type: email |
955 |
lang: default |
955 |
lang: default |
956 |
content: |
956 |
content: |
957 |
- "Dear <<borrowers.firstname>> <<borrowers.surname>>," |
957 |
- "Dear [% borrower.firstname %] [% borrower.surname %]," |
958 |
- "" |
958 |
- "" |
959 |
- "The following item(s) will be due soon:" |
959 |
- "The following item(s) will be due soon:" |
960 |
- "" |
960 |
- "[% FOREACH checkout IN checkouts %]" |
961 |
- "<<items.content>>" |
961 |
- "[% checkout.title %], [% checkout.author %] ([% checkout.barcode %])" |
962 |
- "" |
962 |
- "[% END %]" |
963 |
- "Thank you." |
963 |
- "Thank you." |
964 |
|
964 |
|
965 |
- module: circulation |
965 |
- module: circulation |
Lines 971-979
tables:
Link Here
|
971 |
message_transport_type: sms |
971 |
message_transport_type: sms |
972 |
lang: default |
972 |
lang: default |
973 |
content: |
973 |
content: |
974 |
- "Dear <<borrowers.firstname>> <<borrowers.surname>>," |
974 |
- "Dear [% borrower.firstname %] [% borrower.surname %]," |
975 |
- "" |
975 |
- "" |
976 |
- "You have <<count>> item(s) that will be due soon." |
976 |
- "You have [% checkouts.size %] item(s) that will be due soon." |
977 |
- "" |
977 |
- "" |
978 |
- "Thank you." |
978 |
- "Thank you." |
979 |
|
979 |
|
980 |
- |
|
|