> i would imagine the workflow would email all people in the group publisher
> when the workflow code is as follows:
>
> <set field="mailTo" value="group-publisher"/>
> <set field="mailTemplate" value="simonsMail"/>
> <participant ref="command-sendMail"/>
>
Right, if you have defined the template simonsMail under this path:
/modules/mail/config/templates
This workflow will send you emails only if you reject the tickets and
WON'T send you any email when you will proceed.
About the logs, which environnement are you using to develop on magnolia?
Eclipse, JIdea...
It's really strange to not have logs when you can't send emails. You
should have at least a stack that tell you that the parameter to is
missing for example or can't send because the server is not reachable.
Dig on this.
Your workflow seems to be valid, but you should tests this part of code,
instead of the existing one.(process definition for revision round)
<process-definition name="revision-round">
<loop>
<while test="${field:action} == reject"/>
<sequence>
<to-editor/>
<if test="${field:action} != proceed">
<break/>
</if>
<to-publisher/>
</sequence>
</loop>
</process-definition>
HTH
CAPITAINE Harold
----------------------------------------------------------------
for list details see
http://documentation.magnolia.info/docs/en/editor/stayupdated.html
----------------------------------------------------------------