Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Maarch
maarchRM
Commits
14985102
Commit
14985102
authored
Nov 29, 2021
by
Arnaud Pauget
Browse files
feat(18442) : fix configuration and simple_recipients
parent
10d2be0c
Changes
2
Hide whitespace changes
Inline
Side-by-side
data/maarchRM/conf/configuration.ini.default
View file @
14985102
...
...
@@ -625,7 +625,7 @@ chainWithTimestamp = false;
; 'title': 'Integrity check',
; 'recipients': ['Info <info@maarch.org>'],
; 'message' : 'This is a simple plain text mesage with no variable'
; }
; }
,
; {
; 'filter': {
; 'eventType': 'recordsManagement/integrityCheck'
...
...
data/maarchRM/notifications/simple_recipients.php
View file @
14985102
...
...
@@ -12,7 +12,7 @@ $recipients = [];
foreach
(
$originatorUserPositions
as
$originatorUserPosition
)
{
$account
=
$accountController
->
get
(
$originatorUserPosition
->
userAccountId
);
$recipients
[]
=
$account
->
displayName
.
' <'
.
$account
->
emailAddress
.
'>'
;
$recipients
[]
=
$account
->
emailAddress
;
}
return
$recipients
;
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment