package eu.dnetlib.repo.manager.service.utils; import eu.dnetlib.domain.data.PiwikInfo; import eu.dnetlib.domain.functionality.UserProfile; public interface EmailUtils { void reportException(Exception exception); void sendAdministratorRequestToEnableMetrics(PiwikInfo piwikInfo) throws Exception; void sendUserRequestToEnableMetrics(PiwikInfo piwikInfo) throws Exception; void sendAdministratorMetricsEnabled(PiwikInfo piwikInfo) throws Exception; void sendUserMetricsEnabled(PiwikInfo piwikInfo) throws Exception; }