mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-18 07:23:08 +00:00
24 lines
548 B
Plaintext
24 lines
548 B
Plaintext
## Workflow curation task notification email message
|
|
##
|
|
## {0} Title of submission
|
|
## {1} Name of collection
|
|
## {2} Submitter's name
|
|
## {3} Name of task operating
|
|
## {4} Task result
|
|
## {5} Workflow action taken
|
|
##
|
|
#set($subject = "${config.get('dspace.name')}: Curation Task Report")
|
|
|
|
Title: ${params[0]}
|
|
Collection: ${params[1]}
|
|
Submitted by: ${params[2]}
|
|
|
|
Curation task ${params[3]} has been performed
|
|
with the following result:
|
|
|
|
${params[4]}
|
|
|
|
Action taken on the submission: ${params[5]}
|
|
|
|
The ${config.get('dspace.name')} Team
|