There are sample notices for email, print, and SMS in koha, which are used in koha on various occasions like account creation, check-in, checkout, overdue, etc. We can customization the content of these notices as well as the subject of the email or SMS.
Let us know how to customize the various Email notices:-
1. Check out
Open Koha staff interface
Tools→Notices & Slips ⇢ CHECKOUT
Click the edit button to customize
<p>Dear <strong><<borrowers.title>>. <<borrowers.firstname>>
<<borrowers.surname>></strong></p>
<p>The following item has been <strong>returned to the library</strong>:-</p>
<table style="width: 406px;" border="1" cellpadding="0">
<tbody>
<tr>
<td width="193">
<p><strong>Library Card No.</strong></p>
</td>
<td width="207">
<p><<borrowers.cardnumber>></p>
</td>
</tr>
<tr>
<td width="193">
<p><strong>Name</strong></p>
</td>
<td width="207">
<p><<borrowers.title>>. <<borrowers.firstname>>
<<borrowers.surname>></p>
</td>
</tr>
<tr>
<td width="193">
<p><strong>Barcode / Accession No.</strong></p>
</td>
<td width="207">
<p><<items.barcode>></p>
</td>
</tr>
<tr>
<td width="193">
<p><strong>Title</strong></p>
</td>
<td width="207">
<p><<biblio.title>></p>
</td>
</tr>
<tr>
<td width="193">
<p><strong>Author</strong></p>
</td>
<td width="207">
<p><<biblio.author>></p>
</td>
</tr>
<tr>
<td width="193">
<p><strong>Date of Issue</strong></p>
</td>
<td width="207">
<p><<issues.date_due>></p>
</td>
</tr>
<tr>
<td width="193">
<p><strong>Overdue Date</strong></p>
</td>
<td width="207">
<p><<old_issues.returndate>></p>
</td>
</tr>
</tbody>
</table>
<p>This is a system-generated Email.</p>
<p>For more details. <a href="Your kohaOPAC IP/cgi-bin/koha/opac-user.pl" target="_blank">Click here</a></p>
<p><strong>User Name:</strong> <<borrowers.userid>></p>
<p><strong>Password:</strong> <<borrowers.password>></p>
<p><br /> Thank you for visiting <<branches.branchname>></p>
Now follow the same procedure for all the notices and copy and paste the given HTML scripts.
<p>Dear <strong><<borrowers.title>>. <<borrowers.firstname>>
<<borrowers.surname>></strong></p>
<p>The following item has been <strong>returned to the library</strong>:-</p>
<table style="width: 406px;" border="1" cellpadding="0">
<tbody>
<tr>
<td width="193">
<p><strong>Library Card No.</strong></p>
</td>
<td width="207">
<p><<borrowers.cardnumber>></p>
</td>
</tr>
<tr>
<td width="193">
<p><strong>Name</strong></p>
</td>
<td width="207">
<p><<borrowers.firstname>> <<borrowers.surname>></p>
</td>
</tr>
<tr>
<td width="193">
<p><strong>Barcode / Accession No.</strong></p>
</td>
<td width="207">
<p><<items.barcode>></p>
</td>
</tr>
<tr>
<td width="193">
<p><strong>Title</strong></p>
</td>
<td width="207">
<p><<biblio.title>></p>
</td>
</tr>
<tr>
<td width="193">
<p><strong>Author</strong></p>
</td>
<td width="207">
<p><<biblio.author>></p>
</td>
</tr>
<tr>
<td width="193">
<p><strong>Date of Return</strong></p>
</td>
<td width="207">
<p><<old_issues.returndate>></p>
</td>
</tr>
</tbody>
</table>
<p>This is a system-generated Email.</p>
<p>For more details. <a href="Your kohaOPAC IP/cgi-bin/koha/opac-user.pl" target="_blank">Click here</a></p>
<p><strong>User Name:</strong> <<borrowers.userid>></p>
<p><strong>Password:</strong> <<borrowers.password>></p>
<p><br /> Thank you for visiting <<branches.branchname>></p>
0 Comments