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