forked from DSpace/DSpace
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed emails sending - added arguments and cfg properties that are sent in the email. (#470)
- Loading branch information
1 parent
e59b393
commit 7401c08
Showing
5 changed files
with
71 additions
and
23 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
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 |
---|---|---|
@@ -1,14 +1,27 @@ | ||
## E-mail sent to confirm authenticity of the user's e-mail. | ||
## | ||
## Parameters: {0} confirmation e-mail | ||
## | ||
## See org.dspace.core.Email for information on the format of this file. | ||
## | ||
# E-mail sent to confirm authenticity of the user's e-mail. | ||
# | ||
# Parameters: {0} confirmation e-mail | ||
# {1} helpdesk email | ||
# {2} helpdesk phone number | ||
# {3} DSpace name short | ||
# {4} DSpace name | ||
# {5} DSpace UI url | ||
# | ||
# See org.dspace.core.Email for information on the format of this file. | ||
# | ||
Subject: ${params[3]}: Account Registration | ||
To complete registration for a ${params[3]} repository account at {params[5]}, please click the link below: | ||
|
||
Confirmation e-mail: ${params[0]} | ||
${params[0]} | ||
|
||
If you need assistance with your account, please email | ||
${params[1]} or call us at ${params[2]} | ||
|
||
|
||
${params[3]} Team | ||
|
||
_____________________________________ | ||
${dspace.name}, | ||
WWW: ${dspace.url} | ||
Email: ${lr.help.mail} | ||
Tel.: ${lr.help.phone} | ||
${params[4]}, | ||
WWW: ${params[5]} | ||
Email: ${params[1]} | ||
Tel.: ${params[2]} |
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