Hi
I have this syntax String.format(config("Email_Body").Tostring, ErrorMsg) from uipath to be converted to PAD usable
ErrorMsg is a variable
my config("Email_Body") read from excel as a html body as follow
<html>
<body>
<p>Hi All,</p>
<p><b>Fail</b> to run . </p>
<p>The error description: <b>{0}</b></p>
<p> Thanks & Regards, </p>
<p> Robot </p>
</body>
</html>
how can i change this syntax String.format(config("Email_Body").Tostring, ErrorMsg) so my email body that {0} can be dynamic?
thanks