package com.porterhead.mail;
/**
* @author: Iain Porter
*/
public interface MailSenderService {
public EmailServiceTokenModel sendVerificationEmail(EmailServiceTokenModel emailServiceTokenModel);
public EmailServiceTokenModel sendRegistrationEmail(EmailServiceTokenModel emailServiceTokenModel);
public EmailServiceTokenModel sendLostPasswordEmail(EmailServiceTokenModel emailServiceTokenModel);
}