To send the URL/link of the uploaded file in the e-mail message, select the “Deluge Mode” tab in the message box of the “Email Task” dialogue. Specify the url within the <a href>tag, in the format given below. For example, in the sample message given below, File_Upload is the name of the file upload field, zoho.adminuser is the name of the app owner and zoho.appname is the application name and test_view is the view link name and the actual link is specified within single quotes.
on add
{
on success
{
sendmail
(
To : zoho.loginuserid
From : zoho.adminuserid
Subject : "sending uploaded file links in email messages"
Message : "<a href="https://creatorexport.zoho.com/DownloadFile.do?filepath=/" + input.File_Upload
+ "&sharedBy=" + zoho.adminuser + "&appLinkName="+ zoho.appname + "&viewLinkName=test_view
">Uploaded File</a>"
)
}
}