关于javaMail邮件发送系统
摘要:
javaMail邮件发送系统,大家可以写个通用的底层方法去实现代码如下 //邮件系统添加附件 public static MimeBodyPart createAttachment(String fileName) throws Exception { MimeBodyPart attachmentPart = new MimeBodyPart(); FileDataSource fds = new FileDataSource(fileName); attachmentPart.setDataHandler(new DataHandler(fds)); ... 阅读全文
posted @ 2012-03-30 14:35 java课程设计 阅读(267) 评论(0) 推荐(0) 编辑