Hi All,
Hope you guys are doing great.
We have a requirement please let me know the steps to fulfill that.
1.There is a dynamic url when we click on that url a file will be downloaded into local machine.
2.We need to attach the above file to mail and send an email notification.
Here we don’t want to display the download file instead we need to add that file as an attachment in email. Step 1 url will get from API response and in one of the screen there will be one link from there requirement starts.
TIA.
Vinay
@VinayLakka125 If the requirement is to get the file data from a url and send it as an attachment to an email. Then you can follow below steps:
-
Create a Connect-Rest rule with the url and map the get method response to a property(text).
-
Call the Connect-Rest rule in an activity by using Get method. This will get us the file/attachment data.
-
For sending an email with the data returned from step2 we can make use of below steps:
@BhanuPrakash_G Thank you very much bhanu it really worked above solution for my requirement.