How can I send the URL of the uploaded file, in my e-mail message?

How can I send the URL of the uploaded file, in my e-mail message?

et the url/link of the uploaded file by specifying the url within the <a href> tag, in the following format.  For example, in the sample message given below, File_Upload is the name of the file upload field, test 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=test&viewLinkName=test_view
+ "'>Uploaded File</a>"

)
}
}

    • Related Articles

    • How can I send a URL in my e-mail message?

      To send a link/url in your e-mail message, the actual link must be specified within the <a href> html tag and the actual link must be within single quotes, as shown in the sample below: on add { on success { sendmail ( To : zoho.loginuserid From : ...
    • How can I send only specific field values in the e-mail message?

      To send only specific field values in your e-mail, use the input.<field_name> variable in  the send mail task. For example, you have 3 fields (Name, Age, Email), and in the email message you want to send only the Name and E-mail field values. The ...
    • Import leads from file

      Zoho Campaigns allows you to import leads from other sources into a mailing list. Before you begin importing leads, make sure that you've created a mailing list to save the data. In this guide, you’ll learn the different ways to import leads from ...
    • How can I send email message with Form Data?

      You can configure to send e-mail message with form data either from the Form GUI or by adding Deluge Script with the Send mail task.  1. To configure email notifications from the Form GUI, refer the topic, Configure email notifications from GUI.  The ...
    • How can I insert line breaks to my e-mail message?

      A message could be sent as "Plain Text" or "HTML".  Use <br> tag if the content is HTML and \n if the content type is "plain text".  For example,  on add { on success { sendmail ( To : zoho.loginuserid From : zoho.adminuserid Subject : "To insert ...