mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-19 16:03:07 +00:00
23 lines
562 B
Plaintext
23 lines
562 B
Plaintext
## E-mail sent to designated address when a harvest process fails
|
|
##
|
|
## Parameters: {0} Collection id
|
|
## {1} Date & time
|
|
## {2} Status flag
|
|
## {3} Exception message
|
|
## {4} Exception stack trace
|
|
##
|
|
## See org.dspace.core.Email for information on the format of this file.
|
|
##
|
|
#set($subject = "${config.get('dspace.name')}: Harvesting Error")
|
|
Collection ${params[0]} failed on harvest:
|
|
|
|
Date: ${params[1]}
|
|
Status Flag: ${params[2]}
|
|
|
|
${params[3]}
|
|
|
|
Exception:
|
|
${params[4]}
|
|
|
|
The ${config.get('dspace.name')} Team
|