How to return a file's URL in the email
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2013 07:49 AM
I want create a function to return a file"s URL in the email. For example, i send a email direct on the file location and the and the person who received can access this location. Is it possible? Thank you.
Labels:
- Labels:
-
Archive
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2013 12:44 AM
You may use the below FTL directives directly in email template:
${document.url}
${document.shareUrl}
You may also form the URL by using below properties of the document:
and form the URL as :
${document.url}
${document.shareUrl}
You may also form the URL by using below properties of the document:
${document.storeId}${document.id}${document.siteShortName}
and form the URL as :
http://[youralfrescoserver]/share/page/site/${document.siteShortName}/document-details?nodeRef=workspace://${document.storeId}/${document.id}
