Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How i can add a proper table format to display the content in SendMail. Below is my Job
Now the java flex has
Start Code:
String result_set="";
Main Code
result_set=result_set+" "+" "+" "+email_output.Name+" "+" "+" "+email_output.EmpID+"<p>";
End Code
globalMap.put("result",result_set);
SendMail message has
(String)globalMap.get("result")
-Advance setting: MIME type ='HTML'
I get output like below
eg:
--------------------------------------------------------------- Output -------------------------------------
Name Number
Jhon EMP00123
Daniel EMP111111
-------------------------------------------------------------------------------------------------------------
This works, But you can see the column are not properly indent.
So how i can achieve the proper indent ?
Any help is greatly appreciated
My job desgin