From: blake Date: Fri, 21 Jan 2022 15:52:55 +0000 (-0600) Subject: Adding email support for msg10 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=refs%2Fheads%2Fuser%2Fblake%2Flp1528301_noble_extension;p=working%2FSIPServer.git Adding email support for msg10 Signed-off-by: blake --- diff --git a/Sip/MsgType.pm b/Sip/MsgType.pm index c3cd3e0..24e27f7 100644 --- a/Sip/MsgType.pm +++ b/Sip/MsgType.pm @@ -710,6 +710,7 @@ sub handle_checkin { $resp .= maybe_add(FID_HOLD_PATRON_NAME, $item->hold_patron_name ); if ($server->{institution}->phone_ext_to_msg10()) { $resp .= maybe_add(FID_HOME_PHONE, $item->hold_patron_phone ); + $resp .= maybe_add(FID_EMAIL, $item->hold_patron_email ); } } }