Workflow Notification E-mail subject

cancel
Showing results for 
Search instead for 
Did you mean: 
mishgan
Member II

Workflow Notification E-mail subject

Hello.
My current version is :
Alfresco Share v5.2.f
(r137983-b22, Aikau 1.0.101.10, Spring Surf 5.2.f, Spring WebScripts 6.15, Freemarker 2.3.20-alfresco-patched, Rhino 1.7R4-alfresco-patched, Yui 2.9.0-alfresco-20141223)
Alfresco Community v5.2.0
(re21f2be5-b22) schema 10057
I`m trying to change Workflow Notification E-mail subject (e-mail template  wf-email.html.ftl was successfuly changed ) but accordig to any suggestions i coldn`t find:
1. notification-service.properties file to change 
assigned-task= new-pooled-task=
2. any files contains 'You have been assigned a task' string
 
Please, help me to solve this problem
1 Reply
kalpesh_c2
Senior Member

Re: Workflow Notification E-mail subject

Repo Tier AMP
Create AMP using Alfresco Maven SDK.
Create messages folder under src/main/amp/config/alfresco/module/[your app name].
Create property file named myworkflow.properties

Add below line to file.
assigned-task=New assigned name


After that Edit service-context.xml and add following lines.

<bean id="${project.artifactId}-dictionaryBootstrap" parent="dictionaryModelBootstrap" depends-on="dictionaryBootstrap">
<property name="labels">
<list>
<value>alfresco/module/${project.artifactId}/messages/myworkflow</value>
</list>
</property>
</bean><bean id="${project.artifactId}-dictionaryBootstrap" parent="dictionaryModelBootstrap" depends-on="dictionaryBootstrap">
<property name="labels">
<list>
<value>alfresco/module/${project.artifactId}/messages/myworkflow</value>
</list>
</property>
</bean>‍‍‍‍‍‍‍

Check this on alfresco SDK.
if it works fine then create AMP and install it on your alfresco.

Thanks,

Contcentric