在电子邮件中附加MS Word,Excel和pdf文件

时间:2012-06-29 13:50:36

标签: java email email-attachments attachment

以下是我发送电子邮件的代码。

/*
* 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

1 个答案:

答案 0 :(得分:1)

快速搜索给我带来了这个...... http://commons.apache.org/email/userguide.html

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