02-05-2013 05:24 AM
Hello,
I simply want to add a "send email" button with Nuxeo Studio, just like here :
I added an XML extension with :
<extension target="org.nuxeo.ecm.platform.actions.ActionService" point="actions">
<action icon="/icons/mail.png" id="sendEmail" label="action.email.document" link="send_email" order="17" enabled="true" >
<category>DOCUMENT_UPPER_ACTION</category>
</action>
</extension>
==> the button appears, but no email is sent 😞
Do you have any idea why ?
Thank you
02-05-2013 11:51 AM
Ok, I managed to do it with this code :
<extension target="org.nuxeo.ecm.platform.actions.ActionService" point="actions">
<action id="sendNotificationEmail" enabled="true" />
<action id="sendNotificationEmail" link="send_notification_email" enabled="true" order="17" label="action.email.document" icon="/icons/mail.png">
<category>DOCUMENT_UPPER_ACTION</category>
</action>
</extension>
==> I replaced send_email with send_notification_email
Thanks ! 😉
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.