-1

我需要通过 java 应用程序发送一封电子邮件,并且该电子邮件包含一个链接。
链接的价值是动态的。
我尝试了以下方法:

messageBodyPart.setText(messageBody,"UTF-8","html"); 

StringBuffermessageBody = "Go to <a href = '" +CommonConstant.APP_URL + "' > </a>"

public static final String APP_URL = "http:\Application\Check";

但这似乎不起作用!

4

1 回答 1

0

you have to compose html body. see this for detail

于 2012-08-09T06:34:43.200 回答