AuthorBuddy/Services/IEmailService.cs
2026-06-21 07:52:03 +02:00

7 lines
202 B
C#

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