Package org.beangle.notification.notifiers.mail

Examples of org.beangle.notification.notifiers.mail.MailMessage


    AbstractMailNotifier<MailMessage> notifier = new DefaultMailNotifier<MailMessage>(mailSender);
    notifier.setFrom("测试name<user1@localhost>");
    DefaultNotificationTask<MailMessage> task = new DefaultNotificationTask<MailMessage>();
    task.setNotifier(notifier);
    MailMessage mmc = new MailMessage("测试", "测试简单邮件发送机制", "user2@localhost");
    task.getMessageQueue().addMessage(mmc);
    task.send();
    MimeMessage[] msgs = greenMail.getReceivedMessages();
    assertEquals(1, msgs.length);
  }
View Full Code Here

TOP

Related Classes of org.beangle.notification.notifiers.mail.MailMessage

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.