Package mail

Examples of mail.SimpleMailSender


    }
    return gameName;
  }
 
  public void sendMail(String issueNo, String content){
    SimpleMailSender send = new SimpleMailSender();
    MailSenderInfo info = new MailSenderInfo();
    info.setToAddress("119851423@qq.com");
    //info.setToAddress("zhengweiwei@purang.com");
    info.setSubject(issueNo);
    info.setContent(content);
    send.sendTextMail(info);
  }
View Full Code Here

TOP

Related Classes of mail.SimpleMailSender

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.