diff --git a/dspace/config/emails/request_item.granted_token b/dspace/config/emails/request_item.granted_token new file mode 100644 index 0000000000..0563aa5be6 --- /dev/null +++ b/dspace/config/emails/request_item.granted_token @@ -0,0 +1,36 @@ +## Sent to the person requesting a copy of a restricted document when the +## request is granted. +## +## Parameters: +## {0} name of the requestor +## {1} Handle URL of the requested Item +## {2} title of the requested Item +## {3} name of the grantor +## {4} email address of the grantor (unused) +## {5} custom message sent by the grantor. +#set($subject = 'Request for Copy of Restricted Document is Granted') +Dear ${params[0]}: + +Your request for a copy of the file(s) from the below document has been approved. The following link will grant access to the files you requested. + +Secure link: ${params[6]} + + ${params[2]} + ${params[1]} + +#if( $params[7] ) + + +Your access will last until ${params[7]}. +#end +#if( $params[5] ) + + + +An additional message from the approver follows: + +${params[5]} +#end + +Best regards, +The ${config.get('dspace.name')} Team