namespace AuthorBuddy.Web.Services; public interface IEmailService { Task SendPasswordAsync(string recipientEmail, string recipientName, string newPassword); bool IsConfigured { get; } }