namespace MemberCenter.Application.Abstractions; public interface IAccountEmailService { Task SendVerificationEmailAsync(Guid userId, string? fallbackBaseUrl = null); Task SendPasswordResetEmailAsync(Guid userId, string? fallbackBaseUrl = null); }