cancel
Showing results for 
Search instead for 
Did you mean: 

Can't input Emailed Aspect

samjeff
Champ in-the-making
Champ in-the-making
Dear all,

I've already make a rule wizard to add aspect 'Emailed'.
But when I add a file, the input 'Originator', 'Addressee', 'Addressees','Sent Date', 'Subject' are disabled.
So, I can not input anything in those fields,  because the fields are disabled.
Would you please to help me?

Thank you so much
1 REPLY 1

samjeff
Champ in-the-making
Champ in-the-making
I know the problem.
We must setting in \\Alfresco\tomcat\webapps\alfresco\WEB-INF\classes\alfresco\web-client-config-properties.xml
Change read-only "true" to be "false" like this

<config evaluator="aspect-name" condition="emailed">
      <property-sheet>
         <separator name="sepem1" display-label="Email Data" component-generator="HeaderSeparatorGenerator" />
         <show-property name="originator" read-only="false"/>
         <show-property name="addressee" read-only="false"/>
         <show-property name="addressees" read-only="false"/>
         <show-property name="sentdate" read-only="false"/>
         <show-property name="subjectline" read-only="false"/>
      </property-sheet>
   </config>

Another problem is how do I make schedule to send this email as 'sentdate' input.
If I input sentdate = 30 July 2008, so I want this data sent automatically on 30 July 2008 to the addressee.
How to set this schedule?
Because there is no email notification received although I've already input them above.
I really appreciate your help.
Thank you