’ Construct the HTML for the hyperlink
htmlLink = “” + FileName + “”
’ Construct the email body with the HTML hyperlink
emailBody = "
Please find the file: " + htmlLink + “
”
’ Use the Send Outlook Mail Message activity to send the email
SendOutlookMailMessage(“[YourEmailAddress]”, “[RecipientEmailAddress]”, “File Link”, emailBody)