Attach Link to body of email - file path

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

1 Like

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 :slight_smile:

1 Like

Instead of attachment, i was trying to do this:

image
Does this make more sense?

Thanks @HareeshMR :slight_smile:

Oh, you want to add the hyperlink for the file in the shared folder @shawnmurray?

1 Like

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

1 Like

Hi,

I must be missing something somewhere…
image

Regards,
Shawn @HareeshMR

I’m getting it correctly @shawnmurray

Please check if you have marked IsBodyHTML check box :slight_smile:

image

and href should be like this : "Click Me "

1 Like

Hi,

I have done what you said and it still comes out as plain text.
image

image
Thanks

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 :slight_smile:

1 Like

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>

1 Like

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

image

1 Like

I will attach images.

image

Its checked.

Thanks

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 :upside_down_face:

Thanks for your help! @HareeshMR

1 Like

Is it working now @shawnmurray?