0

在 java 程序中,我想通过用户的本地邮件客户端自动发送邮件。

我使用以下代码打开客户端并填写必填字段,但我现在如何在没有任何用户交互的情况下自动发送它?

    private void sendMail() throws MessagingException {
    try {
        Desktop.getDesktop().mail(new URI("mailto:abc@def.com?subject=someSubject&cc=aa@bb.cc,dd@dd.ds&bcc=x@y.zz&body=someBodyText"));
    } catch (Exception e) {
        e.printStackTrace();
    }

}

基本上我想发送不离开公司网络的邮件。

4

2 回答 2

1

答案是Java Mail API

基本上,您需要一个邮件帐户(通常是用户名+密码),您还需要邮件 SP 的 SMTP 服务器地址,该地址通常在他们的网站上。

于 2013-07-04T10:39:04.487 回答
1

按照本指南,我至少找到了一种处理前景的方法:Vogella,Eclipse-Microsoft Integration

基本上我使用 OleClientSite 类来调用 Outlook。然后我使用 oleAutomation 类来发送邮件。

代码片段:

            Shell shell = new Shell(Display.getDefault());
            OleFrame frame = new OleFrame(shell, SWT.NONE);
            // This should start outlook if it is not running yet
            OleClientSite site = new OleClientSite(frame, SWT.NONE, "OVCtl.OVCtl");
            site.doVerb(OLE.OLEIVERB_INPLACEACTIVATE);
            // Now get the outlook application
            OleClientSite site2 = new OleClientSite(frame, SWT.NONE,
                "Outlook.Application");
            OleAutomation outlook = new OleAutomation(site2);
            // 
            OleAutomation mail = invoke(outlook, "CreateItem", 0 /* Mail item */)
                .getAutomation();
            setProperty(mail, "To", "aav@gmail.com"); /*
                                   * Empty but could also be
                                   * predefined
                                   */

            setProperty(mail, "Bcc", "test@gmail.com"); /*
                                   * Empty but could also be
                                   * predefined
                                   */

            setProperty(mail, "BodyFormat", 2 /* HTML */);
            setProperty(mail, "Subject", "Top News for you");
            setProperty(mail, "HtmlBody",
                "<html>Hello<p>, please find some infos here.</html>");

            invoke(mail, "Send" /* or "Send" */);
于 2013-07-04T14:20:16.293 回答