/drivetogether/src/at/fhj/itm/util/EmailUtil.java
http://fhj-ws2010-itm08-sesoftde.googlecode.com/ · Java · 20 lines · 6 code · 2 blank · 12 comment · 0 complexity · 6f03ed1dbf6de3e0fd86be0bd1db046e MD5 · raw file
- package at.fhj.itm.util;
-
- /**
- * Interface for email functions.
- * @author Hans-Joerg Tagger<br />
- * Patrick Habith
- * @version 0.1 - last change Jan. 24, 2011
- */
- public interface EmailUtil
- {
- /**
- * Send an email to an user to confirm his/her registration.
- * @param email - the user's email address
- * @param username - the user's username (used as personal name in the email)
- * @return true if the message was sent successful otherwise false
- */
- public boolean sendRegConfirmation(String email, String username);
-
- public abstract boolean sendTripDeleteNotification(String email, String username);
- }