PlanTempusApp/PlanTempus.Core/Email/IEmailService.cs

11 lines
268 B
C#
Raw Normal View History

#nullable enable
namespace PlanTempus.Core.Email;
public interface IEmailService
{
Task<EmailResult> SendVerificationEmailAsync(string toEmail, string userName, string verifyUrl);
}
public record EmailResult(bool Success, string? MessageId, string? ErrorMessage);