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

软件工程

开发平台:

Java

  1. package com.company.bridge;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public class TextMail extends MailTemplate {
  7. public TextMail(String _from, String _to, String _subject, String _context) {
  8. super(_from, _to, _subject, _context);
  9. }
  10. @Override
  11. public String getContext() {
  12. //文本类型则设置邮件的格式为:text/plain
  13. String context = "nContent-Type: text/plain;charset=GB2312n" +super.getContext();
  14. //同时对邮件进行base64编码处理,这里用一句话代替
  15. context = context + "n邮件格式为:文本格式";
  16. return context;
  17. }
  18. }