forked from vufind-org/vufind
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Email the service desk after a request is placed
- Loading branch information
1 parent
2f54d62
commit 84a5b36
Showing
4 changed files
with
79 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -375,6 +375,10 @@ renewals_enabled = false | |
; if available, but not supported by all drivers) | ||
title_level_holds_mode = "disabled" | ||
|
||
; Email submitted request notifications to and from these addresses | ||
;holds_email_to = "[email protected]" | ||
;holds_email_from = "[email protected]" | ||
|
||
; Determines how holdings are grouped in the record display, using fields from | ||
; the item information provided by the ILS driver. | ||
; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php // This is a text-only email template; do not include HTML! ?> | ||
<?=$this->translate('request_email_item_message', ['%%id%%' => $hold_details['id']])?> | ||
|
||
|
||
----- | ||
|
||
<?=$this->translate('patron_barcode')?>: <?=$hold_details['patron']['cat_username'] ?? ''?> | ||
|
||
<?=$this->translate('item_barcode')?>: <?=$hold_details['barcode'] ?? ''?> | ||
|
||
<?=$this->translate('Title')?>: <?=$hold_details['itemTitle'] ?? ''?> | ||
|
||
<?=$this->translate('Call Number')?>: <?=$hold_details['callNo'] ?? ''?> | ||
|
||
<?=$this->translate('Location')?>: <?=$hold_details['homeLocation'] ?? ''?> | ||
|
||
<?=$this->translate('Comments')?>: <?=$hold_details['comment'] ?? ''?> | ||
|
||
<?php /* Request Group: <?=$this->translate('request_group')?>: <?=$hold_details['requestGroupId'] ?? ''?> */ ?> |