其实我试过
Desktop.mail(URI uri)
但这不能支持附件。
我还尝试了使用 ActiveXComponent 支持的 jacob。这在 Outlook 中看起来不错。
ActiveXComponent oOutlook = ActiveXComponentHelper.newActiveXComp("Outlook.Application");
Dispatch mail = Dispatch.invoke(oOutlook.getObject(), "CreateItem", Dispatch.Get, new Object[] { "0" }, new int[0])
.toDispatch();
Dispatch.put(mail, "HTMLBody", htmlText);
Dispatch attachmentsObj = Dispatch.get(mail, "Attachments").toDispatch();
这是对 Windows Live Message 和 Lotus 的支持吗?它们的 progId 是什么?
还是有其他更好的方法?
在此先感谢您的帮助。