Files
DSpace/dspace/config/emails/harvesting_error
2023-05-22 23:15:19 +02:00

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