Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Tableau friends,
I have a html file in a folder stored.
Now I want to use this file for tSend.
I tried to use tFileInputRaw, saving the data into a context variable and wanted to call this context variable.
But it's not working. Is there something missing? The email is still empty when it's sending to aan email address.
Thanks for any hints.
I solved this issue now.
Inside tjava:
globalMap.put("htmlContent", row1.content);
and in tSend
(String)globalMap.get("htmlContent")
I solved this issue now.
Inside tjava:
globalMap.put("htmlContent", row1.content);
and in tSend
(String)globalMap.get("htmlContent")
Hi
Glad to see you resolve the issue by using global variable. You can also use context variable, you have the wrong code on tJavaRow, it should be:
context.email=input_row.content.toString();
Regards
Shicong