HtmlMail.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.strategy;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public class HtmlMail extends MailTemplate {
  7. public HtmlMail(String _from, String _to, String _subject, String _context) {
  8. super(_from, _to, _subject, _context);
  9. }
  10. public String getContext(){
  11. //超文本类型则设置邮件的格式为:multipart/mixed
  12. String context = "nContent-Type: multipart/mixed;charset=GB2312n"+super.getContext();
  13. //同时对邮件进行HTML检查,是否有类似未关闭的标签、不符合定义的标签等,这里用一句话来代替
  14. context = context + "n邮件格式为:超文本格式";
  15. return context;
  16. }
  17. }