10-18-2009 10:08 AM
10-19-2009 04:49 AM
10-24-2009 01:34 PM
11-06-2009 05:54 AM
<#——————————————————————>
<#– Name: email_dashlet.ftl –>
<#–Displays a table of all the email from a user imap space/–>
<#– folder under Company Home/Data Dictionary/Imap Home/<currentLoginUser>/INBOX space –>
<#– NOTE: This folder need not exist and –>
<#– the email in it should have the subject and date(which is dropped onto the Repository) –>
<#——————————————————————>
<div style="overflow:auto; height:300px; width:100%;">
<table>
<#assign iter = 0>
<#list (companyhome.childByNamePath["Imap Home"]).children as space>
<#if space.properties.name == "${person.properties.userName}">
<#assign l_space = companyhome.childByNamePath["Imap Home/${person.properties.userName}/INBOX"]>
<#list l_space.children as email>
<#if email.isDocument>
<#if dateCompare(email.properties["cm:created"], date) == 0>
<tr>
<td>
<#assign iter = iter+1>
${iter}. Sub: <a class="title"href="/alfresco/${email.url}">${email.properties.description}</a> by ${email.content}
</td>
</tr>
<tr>
<td>
</td>
</tr>
</#if>
</#if>
</#list>
<#break>
</#if>
</#list>
<#if iter == 0>
<tr>
<td>
There is no emails today.
</td>
</tr>
</#if>
</table>
</div>11-06-2009 06:18 AM
11-06-2009 06:40 AM
11-06-2009 06:42 AM
11-06-2009 07:09 AM
Tags
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.