@@ -, +, @@ 1 - Have a patron wiht an sms number, but no email 2 - Enable sms by setting SMSDriver syspref to Email 3 - Set Notice triggers to send an overdue via sms and email 4 - Ensure the selected notice is defined only for 'email' 5 - Checkout an overdue to the patron above You can set a specify a due date in the past 6 - perl misc/cronjobs/overdue_notices.pl -t 7 - Check the patron notices tab, they have a print notice and an SMS notice pending 8 - The SMS notice used the 'email' template 9 - Apply patch --- misc/cronjobs/overdue_notices.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/misc/cronjobs/overdue_notices.pl +++ a/misc/cronjobs/overdue_notices.pl @@ -700,8 +700,8 @@ END_SQL 'count' => $itemcount, }, # If there is no template defined for the requested letter - # Fallback on email - message_transport_type => $letter_exists ? $effective_mtt : 'email', + # Fallback on the original type + message_transport_type => $letter_exists ? $effective_mtt : $mtt, } ); unless ($letter) { --