Hi,
While using Send Outlook Mail activity i want to add the link to a file in a shared folder.
Can this be done?
Thanks,
Shawn
Hi,
While using Send Outlook Mail activity i want to add the link to a file in a shared folder.
Can this be done?
Thanks,
Shawn
You can simply try adding the path of the file in the shared folders in the attachments property of send outlook mail activity. If you have access to the shared folders, it will retrieve the file and attach to the mail @shawnmurray
Yes, i did think of doing it that way, its just the users are used to how it is in the body of the mail with the link but it should hopefully be okay.
thanks @HareeshMR
Pardon, I don’t understand clearly @shawnmurray
Oh, you want to add the hyperlink for the file in the shared folder @shawnmurray?
Yes thats exactly what i want to do @HareeshMR
Simply make the entire body as HTML and add the hyperlink using the attribute tag as
<a href = " + the path you have " + >Click Me <//a> @shawnmurray
I’m getting it correctly @shawnmurray
Please check if you have marked IsBodyHTML check box
and href should be like this : "Click Me "
Can you post the text in the body you have @shawnmurray?
I will send you the corresponding html. The text will be in the paragraph tag
Will do.
"Hi All,
Please see attached link for sufficent vs insufficient data to 31/07/2019:
<a href C:\Report\Report.xlsx>View Report"
Thanks @HareeshMR
Use this @shawnmurray
<p>Hi All,</p>
<p>Please see attached link For sufficent vs insufficient data To 31/07/2019:</p>
<p><a href C:\Report\Report.xlsx>View Report</a></p>
Hi,
I have copied it the same as you and i still running into the same problem!!
Any other ideas?
I’m getting it exactly fine @shawnmurray
Are you sure you checked the IsBodyHtml box? post the screenshot of what you are getting in the mail
This is the one missing right?
<p><a href="https://www.google.com">google</a></p>
The link line should be like this , But I’m not sure why it is not working as it is working for me
It turns out i was ,missing the “=” in the href tag
Thanks for your help! @HareeshMR
Is it working now @shawnmurray?