File tree Expand file tree Collapse file tree 3 files changed +32
-0
lines changed
java/org/orcid/memberportal/service/member Expand file tree Collapse file tree 3 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -127,6 +127,8 @@ public void sendAddConsortiumMemberEmail(AddConsortiumMember addConsortiumMember
127127 context .setVariable ("contactFamilyName" , addConsortiumMember .getContactFamilyName ());
128128 context .setVariable ("contactJobTitle" , addConsortiumMember .getContactJobTitle ());
129129 context .setVariable ("contactEmail" , addConsortiumMember .getContactEmail ());
130+ context .setVariable ("organizationTier" , addConsortiumMember .getOrganizationTier ());
131+ context .setVariable ("integrationPlans" , addConsortiumMember .getIntegrationPlans ());
130132
131133 String content = templateEngine .process ("mail/addConsortiumMember" , context );
132134 try {
Original file line number Diff line number Diff line change @@ -38,6 +38,10 @@ public class AddConsortiumMember {
3838
3939 private String contactJobTitle ;
4040
41+ private String organizationTier ;
42+
43+ private String integrationPlans ;
44+
4145 public String getRequestedByName () {
4246 return requestedByName ;
4347 }
@@ -173,4 +177,20 @@ public String getContactJobTitle() {
173177 public void setContactJobTitle (String contactJobTitle ) {
174178 this .contactJobTitle = contactJobTitle ;
175179 }
180+
181+ public String getOrganizationTier () {
182+ return organizationTier ;
183+ }
184+
185+ public void setOrganizationTier (String organizationTier ) {
186+ this .organizationTier = organizationTier ;
187+ }
188+
189+ public String getIntegrationPlans () {
190+ return integrationPlans ;
191+ }
192+
193+ public void setIntegrationPlans (String integrationPlans ) {
194+ this .integrationPlans = integrationPlans ;
195+ }
176196}
Original file line number Diff line number Diff line change 5656 < span th:text ="(@{|${membershipStartDate}|}) "> Yes</ span >
5757 </ p >
5858
59+ < p >
60+ < strong > Organization tier</ strong > < br />
61+ < span th:text ="(@{|${organizationTier}|}) "> Yes</ span >
62+ </ p >
63+
64+ < p >
65+ < strong > Integration plans</ strong > < br />
66+ < span th:text ="(@{|${integrationPlans}|}) "> Yes</ span >
67+ </ p >
68+
5969 < p >
6070 < hr />
6171 < strong > Main contact</ strong >
You can’t perform that action at this time.
0 commit comments