<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">// ##########################################################################
// ####                                                                  ####
// ####                  Publikations-Manager Komponenten                ####
// ####                ====================================              ####
// ####                                                                  ####
// #### MailDispatcherTest.java                                          ####
// ####                                                                  ####
// #### Version 1.00, 19. Dezember 1999                                  ####
// ####                                                                  ####
// #### Copyright (C) 1999  Thomas Dreibholz                             ####
// ####               2000  Universität Bonn                             ####
// ####               EMail: dreibh@exp-math.uni-essen.de                ####
// ####               WWW:   http://www.exp-math.uni-essen.de/~dreibh    ####
// ####                                                                  ####
// ####                                                                  ####
// ##########################################################################


import java.io.*;
import MailDispatcher;


// ****** Test für SMTP Mail-Client-Klasse *******************************
class MailDispatcherTest
{  
   static void main(String args[]) {
      MailDispatcher md = MailDispatcher.getInstance();
      try {
         md.SendeMail("localhost","test-user@test.net","lupo@localhost","Dies ist eine Test-Mail!\n\n\n12345678\n");
      } catch(Exception e) {
         System.err.println(e);
      }
   }
}
</pre></body></html>