Alex Buckley
How do you know which patrons were emailed?
Added to Koha 19.05 in bug 16149
1) Staff client > Reports > Create from SQL
2) Query the borrowers table
3) Introduce a WHERE clause - This filters which patron accounts will be returned by the report and therefore be emailed.
Note: Without adding a WHERE clause all library patrons will be emailed.
1) Staff client > Tools > Members and circulation > Notices and slips > New notice
2) Choose the notice module
3) Choose a notice code and name
4) Add content in the 'Email' section using template toolkit syntax
e.g. [% firstname %] instead of <<firstname>>
[% IF categorycode == "PG" %]
....
[% ELSIF categorycode == "UG" %]
...
[% END %]
Request your Koha support vendor schedule the patron emailer cronjob - to actually send the email notices.
Provide the following information:
Administration > Plugins > Manage plugins > '[KK-fork] Patron Emailer' > Actions > Run tool
SELECT cardnumber, firstname, surname, content, time_queued, status
FROM borrowers
LEFT JOIN message_queue USING (borrowernumber)
WHERE letter_code = <<Enter letter code>>