Hello everyone,
I want to insert link to the folder path in email body. I am using Send SMTP mail activity and in the body isHTML checkbox is clicked.
The body should have the output as follows. “Click on this PDF for guidelines”.
The PDF should be hyperlink and when clicked on , it should redirect to the path. I have stored the Path in a variable in Studio.
Anil_G
(Anil Gorthi)
2
@Chetan_Wagh
- You can use create html content and insert a link…
Or
- Use A tag with display values as pdf and use variable in the link
"Click on this <a href=" + LinkVar + ">PDF</a> for guidelines"
Cheers
1 Like
Hi @Chetan_Wagh ,
Can you try this
<a href={0}>Link</a>
LinkVar = “https://www.google.com/”
SMTP body will be String.Format(successMailBody,LinkVar)
Or
<a href="+url here+">Link</a>
I used this but I am only getting the link in text form and nothing else.
Like this
4XhXwdi;Knp4CEu=Yp2;924TN^Kd$cX91
Anil_G
(Anil Gorthi)
5
@Chetan_Wagh
Can you please show the exact implementation how you used it
Cheers
Sorry. My bad. That worked. Thank you so much. Marking it as Solution 
1 Like
system
(system)
Closed
7
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.