Project

General

Profile

1
package eu.dnetlib.repo.manager.server.utils;
2

    
3
import eu.dnetlib.domain.functionality.UserProfile;
4

    
5
/**
6
 * Created by nikonas on 11/12/15.
7
 */
8
public interface EmailUtils {
9

    
10
    void sendActivationEmail(UserProfile user, String activationId) throws Exception;
11

    
12
    void sendResetPasswordEmail(String user, String securityCode) throws Exception;
13

    
14
    void reportException(Exception exception);
15

    
16
}
(1-1/4)