]> git.koha-community.org Git - koha.git/commit
Bug 27884: Add html support for report mails
authorDavid Gustafsson <glasklas@gmail.com>
Thu, 4 Mar 2021 16:54:22 +0000 (17:54 +0100)
committerFridolin Somers <fridolin.somers@biblibre.com>
Thu, 11 Nov 2021 01:38:19 +0000 (15:38 -1000)
commitb2a9d102ce4ad3725178ae952b92b93af23b883a
treee0da0c5db9e635e1175c89d14de5c182c2f05187
parent8748a24d486cff4a135d5cdcf4b6a5bf6da6d59b
Bug 27884: Add html support for report mails

To test:
1) Create a new notice, for example with Koha module "Patrons",
   name/code TEST and message body "<strong>testing<strong>".
2) Create a new sql report, the query could be someting like:
   SELECT "<number>" as `borrowernumber`, "to@example.com", as `email`, "from@example.com" as `from`;
   where "<number>" is a valid borrowernumber.
3) Run patron_emailer.pl --report=<id> --notice=TEST --module=members -commit
   where <id> is the report id.
4) Check the message_queue table that the content_type column has been
   set to text/html; charset="UTF-8".
5) Ideally process the message queue and veriy that the sent email is displayed
   as rendered html.
6) Run tests in t/db_dependent/Reports/Guided.t

Signed-off-by: David Nind <david@davidnind.com>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
(cherry picked from commit 43066b8cd372cbfe1736e3022c333b6ed88c1f59)
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
C4/Reports/Guided.pm