0

下面是我用于发送电子邮件的代码,效果很好。

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package myWorkingFiles;

import org.apache.commons.mail.*;

/*
*
* @author xyz
*/
public class GmailEmailWorking {

    public static void main(String[] args) {
        String myEmailId = "myEmailId@gmail.com";
        String myPassword = "myPassword";
        String senderId = "senderId@yahoo.co.in";
        try {
            Email email = new SimpleEmail();
            email.setSmtpPort(587);
            email.setAuthenticator(new DefaultAuthenticator(myEmailId, myPassword));
            email.setDebug(true);
            email.setHostName("smtp.gmail.com");
            email.setFrom(myEmailId);
            email.setSubject("Hi");
            email.setMsg("This is a test mail ... :-)");
            email.addTo(senderId);
            email.setTLS(true);
            email.send();
            System.out.println("Mail sent!");
        } catch (Exception e) {
            System.out.println("Exception :: " + e);
        }
    }
}

现在我想发送带有附件的电子邮件,而不是如上所示的普通电子邮件。

请让我知道我需要做哪些改变?我相信这很容易,但遗憾的是,谷歌先生也没有帮助我。

我找到了一些链接,但它们没有用。

http://www.tutorialspoint.com/jsp/jsp_sending_email.htm

4

1 回答 1

1

快速搜索让我找到了这个.. http://commons.apache.org/email/userguide.html

你在尝试寻找不同的东西吗?

于 2012-06-29T13:55:05.033 回答