`
jacally
  • 浏览: 770159 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

使用Spring邮件抽象层发送简单邮件(转)

    博客分类:
  • JAVA
阅读更多

http://www.blogjava.net/shmily432685/archive/2005/12/30/26041.html

http://www.blogjava.net/Crying/archive/2007/09/22/142701.html

re: 使用Spring邮件抽象层发送简单邮件

java 代码
  1.   
  2. import java.util.*;    
  3. import javax.mail.*;    
  4. import javax.mail.internet.*;    
  5. import javax.activation.*;    
  6. import java.io.*;    
  7.   
  8. public class SendMail    
  9. {    
  10. static final String MAIL_HOST = "61.177.95.155";    
  11. static final boolean MAIL_NEEDAUTH = true;    
  12. static final String DEFAULT_MAIL_USER = "lioulb@126.com";    
  13. static final String DEFAULT_MAIL_PASSWORD = ".......";    
  14. static final String DEFAULT_FORMAT = "plain"//纯文本    
  15. private MimeMessage mimeMsg; //MIME邮件对象    
  16. private Multipart mp; //Multipart对象,邮件内容,标题,附件等内容均添加到其中后再生成MimeMessage对象    
  17. private Session session; //邮件会话对象    
  18. private Properties props; //系统属性    
  19. private boolean needAuth; //smtp是否需要认证    
  20. private String userName; //smtp认证用户名和密码    
  21. private String password; //smtp认证密码    
  22. private String mailFormat = DEFAULT_FORMAT; //邮件文本格式    
  23.   
  24. public SendMail(String host,boolean needAuth,String user,String password)    
  25. //构造方法    
  26. if(host==null||host.trim().equals(""))    
  27. {    
  28. host = MAIL_HOST;    
  29. }    
  30. setHost(host);    
  31. createMimeMessage();    
  32. setAuth(needAuth);    
  33. if(user==null)    
  34. {    
  35. user = "";    
  36. }    
  37. if(password==null)    
  38. {    
  39. password = "";    
  40. }    
  41. setUser(user,password);    
  42. setFrom(user);    
  43. }    
  44.   
  45. public SendMail()    
  46. {    
  47. setHost(MAIL_HOST);    
  48. createMimeMessage();    
  49. setAuth(MAIL_NEEDAUTH);    
  50. setUser(DEFAULT_MAIL_USER,DEFAULT_MAIL_PASSWORD);    
  51. setFrom(DEFAULT_MAIL_USER);    
  52. }    
  53.   
  54. private void setHost(String hostName)    
  55. //设置smtp的主机地址    
  56. if(props==null)    
  57. {    
  58. props = System.getProperties(); //获得系统属性对象    
  59. }    
  60. props.put("mail.smtp.host",hostName); //设置SMTP主机    
  61. }    
  62.   
  63. private void setAuth(boolean need)    
  64. //smtp认证    
  65. if(props==null)    
  66. {    
  67. props = System.getProperties();    
  68. }    
  69. if(need)    
  70. {    
  71. props.put("mail.smtp.auth","true");    
  72. }    
  73. else    
  74. {    
  75. props.put("mail.smtp.auth","false");    
  76. }    
  77. }    
  78.   
  79. private void setUser(String userName,String password)    
  80. //设置smtp用户名和密码    
  81. this.userName = userName;    
  82. this.password = password;    
  83. }    
  84.   
  85. private boolean createMimeMessage()    
  86. //生成邮件对象    
  87. try    
  88. {    
  89. session = Session.getDefaultInstance(props,null); //获得邮件会话对象    
  90. }    
  91. catch(Exception e)    
  92. {    
  93. e.printStackTrace();    
  94. return false;    
  95. }    
  96. try    
  97. {    
  98. mimeMsg = new MimeMessage(session); //创建MIME邮件对象    
  99. mp = new MimeMultipart();    
  100. return true;    
  101. }    
  102. catch(Exception e)    
  103. {    
  104. e.printStackTrace();    
  105. return false;    
  106. }    
  107. }    
  108.   
  109. private void setMailFormat(String format)    
  110. //设置邮件的正文格式 plain:纯文本格式 html:html格式    
  111. if(format==null)    
  112. {    
  113. format = "plain";    
  114. }    
  115. format = format.trim();    
  116. if(format.equals("plain")||format.equals("html"))    
  117. {    
  118. this.mailFormat = "text/"+format;    
  119. }    
  120. else    
  121. {    
  122. this.mailFormat = "text/plain";    
  123. }    
  124. }    
  125.   
  126. public boolean sendMail(String to,String subject,String body,String format)    
  127. //发送不带附件,不转发的邮件    
  128. boolean theReturn = true;    
  129. setMailFormat(format);    
  130. // String aLine = Time.getdate()+" "+Time.gettime()+" send: "+this.userName    
  131. //+" "+to+" "+Common.convertToGb(subject);    
  132.   
  133. String aLine = " send: "+this.userName    
  134. +" "+to+" "+subject;    
  135. if(setSubject(subject)&&setBody(body)&&setTo(to))    
  136. {    
  137. theReturn = sendOut();    
  138. aLine = aLine+" [Success]";    
  139. }    
  140. else    
  141. {    
  142. theReturn = false;    
  143. aLine = aLine+" [Failed]";    
  144. }    
  145.   
  146. return theReturn;    
  147. }    
  148.   
  149. public boolean sendMail(String to,String subject,String body)    
  150. {    
  151. return sendMail(to,subject,body,DEFAULT_FORMAT);    
  152. }    
  153.   
  154. private boolean setSubject(String mailSubject)    
  155. //设置邮件主题    
  156. try    
  157. {    
  158. //mailSubject = Common.convertToGb(mailSubject);    
  159. mimeMsg.setSubject(mailSubject);    
  160. return true;    
  161. }    
  162. catch(Exception e)    
  163. {    
  164. e.printStackTrace();    
  165. return false;    
  166. }    
  167. }    
  168.   
  169. private boolean setBody(String mailBody)    
  170. //设置邮件正文    
  171. try    
  172. {    
  173. //mailBody = Common.convertToGb(mailBody);    
  174. BodyPart bp = new MimeBodyPart();    
  175. bp.setContent(mailBody,this.mailFormat+";charset=GB2312"); //"<meta http-equiv=Content-Type content=text/html; charset=gb2312>"+mailBody    
  176. mp.addBodyPart(bp);    
  177. return true;    
  178. }    
  179. catch(Exception e)    
  180. {    
  181. e.printStackTrace();    
  182. return false;    
  183. }    
  184. }    
  185.   
  186. private boolean setFrom(String from)    
  187. //设置发信人地址    
  188. try    
  189. {    
  190. mimeMsg.setFrom(new InternetAddress(from));    
  191. return true;    
  192. }    
  193. catch(Exception e)    
  194. {    
  195. e.printStackTrace();    
  196. return false;    
  197. }    
  198. }    
  199.   
  200. private boolean setTo(String to)    
  201. //设置收信人地址    
  202. if(to==null)    
  203. {    
  204. return false;    
  205. }    
  206. try    
  207. {    
  208. mimeMsg.addRecipients(Message.RecipientType.TO,InternetAddress.parse(to));    
  209. return true;    
  210. }    
  211. catch(Exception e)    
  212. {    
  213. e.printStackTrace();    
  214. return false;    
  215. }    
  216. }    
  217.   
  218. private boolean addFileAffix(String filename)    
  219. //添加附件    
  220. try    
  221. {    
  222. BodyPart bp = new MimeBodyPart();    
  223. FileDataSource fileds = new FileDataSource(filename);    
  224. bp.setDataHandler(new DataHandler(fileds));    
  225. bp.setFileName(fileds.getName());    
  226. mp.addBodyPart(bp);    
  227. return true;    
  228. }    
  229. catch(Exception e)    
  230. {    
  231. e.printStackTrace();    
  232. return false;    
  233. }    
  234. }    
  235.   
  236. private boolean setCopyTo(String copyto)    
  237. //设置转发人地址    
  238. if(copyto==null)    
  239. {    
  240. return false;    
  241. }    
  242. try    
  243. {    
  244. mimeMsg.addRecipients(Message.RecipientType.CC,    
  245. (Address[])InternetAddress.parse(copyto));    
  246. return true;    
  247. }    
  248. catch(Exception e)    
  249. {    
  250. e.printStackTrace();    
  251. return false;    
  252. }    
  253. }    
  254.   
  255. public int tryToConnect()    
  256. //连接邮箱 1:连接成功 0:连接失败 -1:已经连接或系统忙    
  257. int theReturn = 0;    
  258. // String aLine = Time.getdate()+" "+Time.gettime()+" Connect: "+this.userName    
  259. //+" "+this.userName+" "+this.password;    
  260.   
  261. String aLine = " Connect: "+this.userName    
  262. +" "+this.userName+" "+this.password;    
  263. try    
  264. {    
  265. Session mailSession = Session.getInstance(props,null);    
  266. Transport transport = mailSession.getTransport("smtp");    
  267. transport.connect((String)props.get("mail.smtp.host"),this.userName,    
  268. this.password);    
  269. transport.close();    
  270. theReturn = 1;    
  271. aLine = aLine+" [Success]";    
  272. }    
  273. catch(MessagingException e)    
  274. {    
  275. e.printStackTrace();    
  276. theReturn = 0;    
  277. }    
  278. catch(IllegalStateException e)    
  279. {    
  280. e.printStackTrace();    
  281. theReturn = -1;    
  282. }    
  283. catch(Exception e)    
  284. {    
  285. e.printStackTrace();    
  286. theReturn = 0;    
  287. aLine = aLine+" [Failed]";    
  288. }    
  289. return theReturn;    
  290. }    
  291.   
  292. private boolean sendOut()    
  293. //发送邮件    
  294. try    
  295. {    
  296. mimeMsg.setContent(mp);    
  297. mimeMsg.saveChanges();    
  298. Session mailSession = Session.getInstance(props,null);    
  299. Transport transport = mailSession.getTransport("smtp");    
  300. transport.connect((String)props.get("mail.smtp.host"),this.userName,    
  301. this.password);    
  302. transport.sendMessage(mimeMsg,mimeMsg.getAllRecipients());    
  303. transport.close();    
  304. return true;    
  305. }    
  306. catch(Exception e)    
  307. {    
  308. e.printStackTrace();    
  309. return false;    
  310. }    
  311. }    
  312.   
  313. public boolean changePwd(String userName,String newPwd)    
  314. //修改邮箱密码    
  315. boolean theReturn = false;    
  316. try    
  317. {    
  318. String commond = "passwd "+userName;    
  319. Process process = Runtime.getRuntime().exec(commond);    
  320. BufferedReader br = new BufferedReader(new InputStreamReader(process.    
  321. getInputStream()));    
  322. PrintStream ps = new PrintStream(process.getOutputStream());    
  323. BufferedReader br1 = new BufferedReader(new InputStreamReader(process.    
  324. getErrorStream()));    
  325. char ac[] = new char[1024];    
  326. br1.read(ac);    
  327. ps.println(newPwd);    
  328. ps.flush();    
  329. br1.read(ac);    
  330. ps.println(newPwd);    
  331. ps.flush();    
  332. br1.read(ac);    
  333. if(process.waitFor()==0)    
  334. {    
  335. theReturn = true;    
  336. }    
  337. }    
  338. catch(Exception e)    
  339. {    
  340. e.printStackTrace();    
  341. //e.printStackTrace(System.out);    
  342. System.out.println(e.toString());    
  343. theReturn = false;    
  344. }    
  345. return theReturn;    
  346. }    
  347.   
  348. public boolean addUser(String userName)    
  349. //添加邮件用户 (密码默认为空)    
  350. boolean theReturn = false;    
  351. try    
  352. {    
  353. String commond = "/usr/sbin/useradd "+userName+    
  354. " -g mail -d /dev/null -s /bin/false";    
  355. Process process = Runtime.getRuntime().exec(commond);    
  356. BufferedReader br = new BufferedReader(new InputStreamReader(process.    
  357. getInputStream()));    
  358. PrintStream ps = new PrintStream(process.getOutputStream());    
  359. BufferedReader br1 = new BufferedReader(new InputStreamReader(process.    
  360. getErrorStream()));    
  361. char ac[] = new char[1024];    
  362. br1.read(ac);    
  363. if(process.waitFor()==0)    
  364. {    
  365. theReturn = true;    
  366. }    
  367. }    
  368. catch(Exception e)    
  369. {    
  370. e.printStackTrace(System.out);    
  371. theReturn = false;    
  372. }    
  373. return theReturn;    
  374. }    
  375.   
  376. public boolean addUser(String userName,String pwd)    
  377. //添加邮件用户    
  378. boolean theReturn = addUser(userName);    
  379. if(theReturn)    
  380. {    
  381. theReturn = changePwd(userName,pwd);    
  382. if(!theReturn)    
  383. //修改密码失败    
  384. deleUser(userName);    
  385. }    
  386. }    
  387. return theReturn;    
  388. }    
  389.   
  390. public boolean deleUser(String userName)    
  391. //删除邮件用户    
  392. boolean theReturn = false;    
  393. try    
  394. {    
  395. String commond = "/usr/sbin/userdel "+userName;    
  396. Process process = Runtime.getRuntime().exec(commond);    
  397. BufferedReader br = new BufferedReader(new InputStreamReader(process.    
  398. getInputStream()));    
  399. PrintStream ps = new PrintStream(process.getOutputStream());    
  400. BufferedReader br1 = new BufferedReader(new InputStreamReader(process.    
  401. getErrorStream()));    
  402. char ac[] = new char[1024];    
  403. br1.read(ac);    
  404. if(process.waitFor()==0)    
  405. {    
  406. theReturn = true;    
  407. }    
  408. }    
  409. catch(Exception exception)    
  410. {    
  411. exception.printStackTrace(System.out);    
  412. theReturn = false;    
  413. }    
  414. return theReturn;    
  415. }    
  416.   
  417. public static void main(String args[]){    
  418. SendMail myMail=new SendMail();    
  419. System.out.println(myMail.sendMail("oxservice@126.com","this is test","my \n test"));    
  420. }    
  421. }    
分享到:
评论

相关推荐

    spring邮件抽象层详解

    Spring邮件抽象层是Spring框架提供的一套用于发送电子邮件的高级接口,它隐藏了与底层邮件系统交互的复杂性,使得开发者能够以一种简洁的方式发送邮件。这个抽象层主要包含在`org.springframework.mail`包中,提供了...

    spring各种邮件发送

    Spring邮件抽象层的主要包为org.springframework.mail。它包括了发送电子邮件的主要接口MailSender,和值对象SimpleMailMessage,它封装了简单邮件的属性如from, to,cc, subject,text。 包里还包含一棵以...

    Spring进阶—如何用Java代码实现邮件发送

    此外,Spring的邮件抽象层还有一套异常处理机制,以更好地封装和处理邮件系统可能出现的异常。 使用Spring发送邮件的基本步骤如下: 1. 添加Spring核心库和相关的邮件发送库(如JavaMail API)到项目依赖中。 2. ...

    spring集成邮件服务

    总的来说,Spring集成邮件服务使得在Java应用中发送邮件变得简单且灵活。通过合理的配置和编程,你可以实现各种复杂的邮件需求,比如触发式邮件、批量邮件、包含动态内容的邮件等。这个过程涉及的技术和概念对于任何...

    spring整合quartz定时发送邮件

    Spring 整合 Quartz 定时发送邮件是一种常见的任务调度场景,用于定期执行如发送通知、报告等操作。Quartz 是一个开源的作业调度框架,它允许开发者创建、调度和管理任务。而Spring作为一个强大的企业级应用开发框架...

    spring整合freemarker发送邮件例子

    在这个场景中,Spring 提供了电子邮件服务的抽象层,使得发送邮件变得简单。 2. **FreeMarker**:FreeMarker 是一个基于模板的 Java 模板引擎,常用于生成动态 HTML、XML 或其他文本格式的文档。在这里,我们使用 ...

    ActiveMQ与Spring整合之异步发送邮件

    1. **邮件服务**:在Spring中,可以使用`JavaMailSender`接口来发送邮件,结合`SimpleMailMessage`对象定义邮件内容。 2. **异步处理**:通过集成ActiveMQ,可以创建一个消息生产者,将发送邮件的任务作为一个消息...

    Java基于JDK1.6基础上Spring2.5.6版本上发送邮件功能需要的依赖lib.zip

    - 使用`JavaMailSender`发送邮件,如: ```java SimpleMailMessage mail = new SimpleMailMessage(); mail.setTo("recipient@example.com"); mail.setSubject("测试邮件"); mail.setText("这是一封测试邮件");...

    SpringUseJavaMailSendEmail(spring使用javamail发送邮件的例子)

    总结起来,Spring结合JavaMail API发送邮件的过程主要包括:配置`JavaMailSender` bean,创建邮件消息对象,设置邮件内容和属性,最后通过`JavaMailSender`实例发送邮件。通过这种方式,开发者可以轻松地在Spring...

    Spring mail 使用多个账号发送带有附件的HTML邮件

    Spring Mail则是在这个API之上提供了一层抽象,使得邮件发送的代码更加简洁和易于管理。 1. **配置Spring Mail**: 在Spring应用中配置Spring Mail通常涉及以下步骤: - 添加依赖:确保项目中包含了`spring-...

    spring发送邮件

    首先,Spring支持两种方式发送邮件:一是使用JavaMailSender接口,二是通过JavaMailSenderImpl类和MailSenderUtils工具类。这两种方法都基于JavaMail API,但Spring提供了一层抽象,使得邮件发送的代码更加简洁和...

    java邮件发送组件

    2. **多线程处理**:为了提高群发效率,可以使用多线程并发发送邮件。但是,过多的并发可能会触发邮件服务商的反垃圾邮件策略,因此需要适当控制并发数量。 3. **错误处理和重试机制**:在群发过程中,可能会遇到...

    Spring Boot 发送邮件功能案例分析

    Spring 框架使用 JavaMailSender 接口为发送邮件提供了一个简单的抽象,并且 Spring Boot 也为它提供了自动配置和一个 starter 模块。如果 spring.mail.host 和相关的库(通过 spring-boot-starter-mail 定义)都...

    SpringMailTest.zip

    Spring邮件抽象层的主要包为org.springframework.mail。它包括了发送电子邮件的主要接口MailSender(实现类为org.springframework.mail.javamail.JavaMailSenderImpl,下面会用到改实现类)和封装了简单邮件属性的值...

    Spring发送Email

    有了配置后,我们可以通过Spring的`JavaMailSender`接口来发送邮件。下面是一个简单的示例,展示了如何创建并发送一封带有文本内容的邮件: ```java @Autowired private JavaMailSender javaMailSender; public ...

    Spring+Freemarker 使用163发HTML格式的邮件

    在Java中,发送邮件通常使用JavaMail API。Spring提供了一个更高级别的抽象,即`JavaMailSender`接口,它简化了邮件发送的过程。在这个例子中,我们将使用Spring的邮件服务来发送HTML格式的邮件。 4. **HTML格式的...

    spring mail的使用

    通过Spring的抽象层,我们可以方便地集成各种邮件服务提供商,如Gmail、Yahoo等,而无需直接处理复杂的JavaMail API。本篇文章将深入探讨如何在Spring中使用Spring Mail进行电子邮件的发送。 首先,我们需要在项目...

Global site tag (gtag.js) - Google Analytics