我已经实现了这样的邮件正文。代码段类似于:
messageBodyPart.setContent("<h1 style=\"color:blue;\">You Have a Promotion </h1> <h4><b>Your First Name :</b></h4>" + FirstNm +
"<h4>Your Last Name :</h4>" + LastNm + "<h4>Your Employee ID :</h4>" + Employeeid +
" <br/> <form>\r\n" +
"<a href=\"http://localhost:8080/update/status/password/ACCEPT\"><input class=\"MyButton\" type = \"button\" value =\"Accept Your Promotion\" /></a>\r\n" +
"</form>","text/html");
因此,邮件正文如下所示:
我想要的是以表方式显示的数据。它的意思是名字:Wahalathanthrige 。因此,可以将更好的数据格式化为表格。有什么建议么?