首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

spring运用模板发送邮件及附件笔记

2013-09-08 
spring使用模板发送邮件及附件笔记需要引用的jar包:mail-1.4.1.jaractivation-1.1.jarspring-context-supp

spring使用模板发送邮件及附件笔记

需要引用的jar包:

mail-1.4.1.jar

activation-1.1.jar

spring-context-support-2.5.jar

spring-webmvc.jar


  1. <!DOCTYPE head PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  <html>  
  2. <head>  <title></title>  
  3. <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">  <style type="text/css">  
  4. body {      font-size: 14px;  
  5.     line-height: 1.5  }  
  6. </style>  </head>  
  7. <body>      <table cellspacing="0" cellpadding="20">  
  8.         <tr>              <td>  
  9.                 <table width="500" cellspacing="0" cellpadding="1">                      <tr>  
  10.                         <td bgcolor="#FF8E00" align="left"                              style="font-family:'lucida grande',tahoma,'bitstream vera sans',helvetica,sans-serif;line-height:150%;color:#FFF;font-size:24px;font-weight:bold;padding:4px">   
  11.                             GIFER社区                          <th></th>  
  12.                     </tr>                      <tr>  
  13.                         <td bgcolor="#FF8E00">                              <table width="100%" cellspacing="0" bgcolor="#FFFFFF"  
  14.                                 cellpadding="20">                                  <tr>  
  15.                                     <td                                          style="font-family:'lucida grande',tahoma,'bitstream vera sans',helvetica,sans-serif;line-height:150%;color:#000;font-size:14px;">  
  16.                                         亲爱的${userName}:                                          <blockquote>  
  17.                                             <br> <strong>您在gifer.com的帐户${userId}密码忘记了?该邮件为你提供临时密码:${password},请及时登录,修改您的密码。</strong><br>                                              <br>如果下面链接不可用,请复制下面的链接到浏览器进行访问,以便修改你的帐户密码。<br>帐户密码修改链接:<br>  
  18.                                             <a href="http://localhost:10002/UserManager/" target="_blank">http://localhost:10002/UserManager/</a><br>                                              <br>  
  19.                                         </blockquote> <br> <br>GIFER 社区<br> <a                                          href="http://localhost:10002/UserManager/" target="_blank">http://localhost:10002/UserManager/</a>  
  20.                                         <br>发送时间:${sendTime}<br> <br>此邮件为系统自动发出,请勿回复。</td>                                            
  21.                                 </tr>                              </table></td>  
  22.                     </tr>                  </table></td>  
  23.         </tr>      </table>  
  24.     <img src='cid:file'/>  </body>  
  25. </html> 

热点排行