fixed bug not allowing to cc or bcc anyone in EmailNotification
git-svn-id: https://svn.research-infrastructures.eu/d4science/gcube/trunk/portal/portal-manager@148669 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
18ee620871
commit
57f1855a60
|
@ -134,8 +134,8 @@ public class EmailNotification {
|
|||
this.emailBodyTextPlain = (builder.bodyTextPlain != null) ? new StringBuffer(builder.bodyTextPlain).append(getWarningLegalText(true)) : null;
|
||||
}
|
||||
|
||||
this.emailRecipientsInCC = new ArrayList<InternetAddress>();
|
||||
this.emailRecipientsInBCC = new ArrayList<InternetAddress>();
|
||||
this.emailRecipientsInCC = builder.emailRecipientsInCC;
|
||||
this.emailRecipientsInBCC = builder.emailRecipientsInBCC;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue