掲示板

Kaleo send notification email recipients

11年前 に Luca Lupo によって更新されました。

Kaleo send notification email recipients

Regular Member 投稿: 106 参加年月日: 12/10/01 最新の投稿
Hi Guys,

I'm customizing Kaleo single approver logic. In particular I have to send an email to all users with a specific role, but when I set in the recipients tag the following xml it seems impossible to import the xml (Error in the portal, but nothing in console.)


                       <notification>
				<name>Review Completion Notification</name>
				<template>
					Your submission has been reviewed and the reviewer has applied the following ${taskComments}.</template>
				<template-language>freemarker</template-language>
				<notification-type>email</notification-type>
				<recipients>
					<role>
            			             <role-type>regular</role-type>
            			              <name>Portal Content Reviewer</name>
            			              <auto-create>false</auto-create>
        			         </role>
				</recipients>
				<execution-type>onExit</execution-type>
			</notification>


Do you know why?

Thanks,

Luc
thumbnail
11年前 に Harish Kumar によって更新されました。

RE: Kaleo send notification email recipients

Expert 投稿: 483 参加年月日: 10/07/31 最新の投稿
Hi Luca

Looks like your xml definitions missing the <roles> tag. Try with the following code -


			<roles>
				<role>
					<role-type>regular</role-type>
					<name>My Portal Content Reviewer</name>
				</role>
			</roles>


HTH
11年前 に Luca Lupo によって更新されました。

RE: Kaleo send notification email recipients

Regular Member 投稿: 106 参加年月日: 12/10/01 最新の投稿
hh that worked....thanksss
thumbnail
11年前 に Harish Kumar によって更新されました。

RE: Kaleo send notification email recipients

Expert 投稿: 483 参加年月日: 10/07/31 最新の投稿
Good to know it worked .. emoticon