[Koha-bugs] [Bug 35762] Add option to send WELCOME notice immediately

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Thu Jan 11 00:37:20 CET 2024


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35762

--- Comment #1 from Katrin Fischer <katrin.fischer at bsz-bw.de> ---
Are you sure it's not send immediately? Some of the messages going via message
queue are triggered immediately, why others will wait for the cron.

I hope it's the same in all spots, but I checked opac-memberentry.pl (self reg)
and it should go out immediately when triggered from there (The
SendQueuedMessages command).

                            my $message_id = EnqueueLetter(
                                {
                                    letter                 => $letter,
                                    borrowernumber         => $patron->id,
                                    to_address             => $emailaddr,
                                    message_transport_type => 'email'
                                }
                            );
                            SendQueuedMessages( { message_id => $message_id } )
if $message_id;
                        };

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.


More information about the Koha-bugs mailing list