1 package org.appfuse.webapp.services;
2
3 import org.appfuse.model.User;
4
5 /**
6 *
7 * Sends email notification
8 *
9 * @author Serge Eby
10 */
11 public interface EmailService {
12 void send(User user, String subject, String message, String url, boolean hint);
13 }