Send outlook Mail Message-Attachment with redirect link icon

Hi Team,

Is there possible to add redirect link with icon in send outlook mail message activity while doing attachment?

Actually i want to share redirect link of the attachment with Drag and drop icon. Is it possible in Uipath?

Thanks in Advance!

Regards,
Prabakaran S

1 Like

Hey @prabakaran.s,

Good to see you here.

You want an icon which redirects to a link having the attachment, is it so ?

Thanks :slight_smile:

Hi Nithinkrishna,

Yes, Exactly. Is it possible?

Thanks in Advance!

Regards,
Prabakaran S

1 Like

Hey @prabakaran.s,

Of course, That’s possible.

You need to use HTML body type for the email and embed an icon to it with hyperlink.

The hyperlink address should be your attachment link where you have uploaded it.

Thanks :slight_smile:

Sample body html:

"<!DOCTYPE html>< html >< body >< span style = 'font-family:calibri; font-size:11pt; color:#1F4E79' >Hello, </ span >"+
"< br />"+
"< span style = 'font-family:calibri; font-size:11pt; color:#1F4E79' >Some text:</ span >"+
"< span style = 'font-family:calibri; font-size:11pt; color:#1F4E79' >Regards</ span >"+
"< a href = "" https://your.link"">< img src = "" cid:icon.jpg""></ a ></ body ></ html >"

You need to add icon.jpg as attachment to e-mail.

Hey Nithinkrishna,

Great! It is working with help of HTML body.

I have used below line in body content of the send outlook activity to achieve it.

“<a href = ““https://test.link””><img src =”“Directory path\icon.png”“></ a >”

Thanks,
Prabakaran

1 Like

Hey Adrain,

It is working fine after removing empty space in between taqs.

I have used below line to achieve it.

I have used below line in body content of the send outlook activity to achieve it.

“<a href = ““https://test.link””><img src =”“Directory path\icon.png”“></ a >”

Thanks & Regards,
Prabakaran S

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.