I find a solution to get the message but I still have a problem :
I try to get the message from param in the <action url> in the xml file
Code:
<dragSource type="ZmMailMsg">
<canvas type="window" width="600" height="350"/>
<actionUrl target="/service/zimlet/_dev/com_zimbra_test12/test12.jsp">
<param name="from">${obj.from}</param>
<param name="to">${obj.to}</param>
<param name="cc">${obj.cc}</param>
<param name="subject">${obj.subject}</param>
<param name="date">${obj.date}</param>
<param name="fragment">${obj.body}</param>
<param name="attachment">${obj.attachment}</param>
</actionUrl>
</dragSource> I find the param obj.body to get the body of the message but obj.from , obj.to and obj.cc return "undefined". Can someone say me the name of the attributes to get from, to and cc please?