Examples of MailSenderInfo


Examples of mail.MailSenderInfo

    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
Copyright © 2018 www.massapi.com. 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.