forked from DSpace/DSpace
-
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.
Create templates mail and renamed name in getEmailFileName
- Loading branch information
Roy Bruschini
committed
Mar 25, 2024
1 parent
29ecc5c
commit 7a637e6
Showing
3 changed files
with
37 additions
and
2 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
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 @@ | ||
## Email sent to DSpace users when they batch import fails. | ||
## | ||
## Parameters: {0} the export error | ||
## {1} the URL to the feedback page | ||
## | ||
## | ||
## See org.dspace.core.Email for information on the format of this file. | ||
## | ||
#set($subject = 'DSpace - The batch import was not completed.') | ||
The batch import you initiated from the DSpace UI was not completed, due to the following reason: | ||
${params[0]} | ||
|
||
For more information you may contact your system administrator: | ||
${params[1]} | ||
|
||
|
||
|
||
The DSpace Team | ||
|
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,16 @@ | ||
|
||
## Email sent to DSpace users when they successfully batch import items. | ||
## | ||
## Parameters: {0} the filepath to the mapfile created by the batch import | ||
## | ||
## | ||
## See org.dspace.core.Email for information on the format of this file. | ||
## | ||
#set($subject = 'DSpace - Batch import successfully completed') | ||
The batch item import you initiated from the DSpace UI has completed successfully. | ||
|
||
You may find the mapfile for the import in the following path: ${params[0]} | ||
|
||
|
||
The DSpace Team | ||
|