namespace SPMS.Application.Interfaces; public interface IEmailService { Task SendVerificationCodeAsync(string email, string code); Task SendPasswordResetTokenAsync(string email, string token); Task SendPasswordSetupTokenAsync(string email, string token); Task SendTempPasswordAsync(string email, string tempPassword); }