From bdac6b3d4984e223c239a39d2bc944d32149ca0c Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Wed, 4 Sep 2019 21:43:13 +0000 Subject: [PATCH] Bug 21390 Send registration verification emails immediately To test 1/ Enable self registration 2/ Register, notice message is queued in the table but not sent 3/ Apply patch 4/ Register again, notice message is queued, but immediately sent --- opac/opac-memberentry.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/opac/opac-memberentry.pl b/opac/opac-memberentry.pl index 7f5eecb11d0..9215c64d243 100755 --- a/opac/opac-memberentry.pl +++ b/opac/opac-memberentry.pl @@ -194,6 +194,9 @@ if ( $action eq 'create' ) { C4::Context->preference('KohaAdminEmailAddress'), } ); + my $num_letters_attempted = C4::Letters::SendQueuedMessages( { + letter_code => 'OPAC_REG_VERIFY' + } ); } else { ( $template, $borrowernumber, $cookie ) = get_template_and_user( -- 2.11.0