7 lines
202 B
C#
7 lines
202 B
C#
namespace AuthorBuddy.Web.Services;
|
|
|
|
public interface IEmailService
|
|
{
|
|
Task<bool> SendPasswordAsync(string recipientEmail, string recipientName, string newPassword);
|
|
bool IsConfigured { get; }
|
|
}
|