Examples of SenderManager


Examples of com.dianping.cat.report.task.alert.sender.sender.SenderManager

public class SenderManagerTest extends ComponentTestCase {

  @Test
  public void test() throws Exception {
    SenderManager manager = lookup(SenderManager.class);
    String content = Files.forIO().readFrom(new File("/tmp/html.html"), "utf-8");
    List<String> receivers = new ArrayList<String>();

    receivers.add("yong.you@dianping.com");
    AlertMessageEntity message = new AlertMessageEntity("Test", "test", "test", content, receivers);
    boolean result = manager.sendAlert(AlertChannel.MAIL, message);

    System.out.println(result);
  }
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.