Lines 1273-1280
sub _add_attachments {
Link Here
|
1273 |
This function's parameter hash reference takes the following |
1273 |
This function's parameter hash reference takes the following |
1274 |
optional named parameters: |
1274 |
optional named parameters: |
1275 |
message_transport_type: method of message sending (e.g. email, sms, etc.) |
1275 |
message_transport_type: method of message sending (e.g. email, sms, etc.) |
|
|
1276 |
Can be a single string, or an arrayref of strings |
1276 |
borrowernumber : who the message is to be sent |
1277 |
borrowernumber : who the message is to be sent |
1277 |
letter_code : type of message being sent (e.g. PASSWORD_RESET) |
1278 |
letter_code : type of message being sent (e.g. PASSWORD_RESET) |
|
|
1279 |
Can be a single string, or an arrayref of strings |
1278 |
message_id : the message_id of the message. In that case the sub will return only 1 result |
1280 |
message_id : the message_id of the message. In that case the sub will return only 1 result |
1279 |
limit : maximum number of messages to send |
1281 |
limit : maximum number of messages to send |
1280 |
|
1282 |
|
Lines 1305-1316
sub _get_unsent_messages {
Link Here
|
1305 |
push @query_params, $params->{'borrowernumber'}; |
1307 |
push @query_params, $params->{'borrowernumber'}; |
1306 |
} |
1308 |
} |
1307 |
if ( $params->{'letter_code'} ) { |
1309 |
if ( $params->{'letter_code'} ) { |
1308 |
$statement .= ' AND mq.letter_code = ? '; |
1310 |
my @letter_codes = ref $params->{'letter_code'} eq "ARRAY" ? @{$params->{'letter_code'}} : $params->{'letter_code'}; |
1309 |
push @query_params, $params->{'letter_code'}; |
1311 |
if ( @letter_codes ) { |
|
|
1312 |
my $q = join( ",", ("?") x @letter_codes ); |
1313 |
$statement .= " AND mq.letter_code IN ( $q ) "; |
1314 |
push @query_params, @letter_codes; |
1315 |
} |
1310 |
} |
1316 |
} |
1311 |
if ( $params->{'type'} ) { |
1317 |
if ( $params->{'type'} ) { |
1312 |
$statement .= ' AND message_transport_type = ? '; |
1318 |
my @types = ref $params->{'type'} eq "ARRAY" ? @{$params->{'type'}} : $params->{'type'}; |
1313 |
push @query_params, $params->{'type'}; |
1319 |
if ( @types ) { |
|
|
1320 |
my $q = join( ",", ("?") x @types ); |
1321 |
$statement .= " AND message_transport_type IN ( $q ) "; |
1322 |
push @query_params, @types; |
1323 |
} |
1314 |
} |
1324 |
} |
1315 |
if ( $params->{message_id} ) { |
1325 |
if ( $params->{message_id} ) { |
1316 |
$statement .= ' AND message_id = ?'; |
1326 |
$statement .= ' AND message_id = ?'; |