7 lines
166 B
C#
7 lines
166 B
C#
namespace Socialize.Api.Infrastructure.Emailer.Contracts;
|
|
|
|
internal interface IEmailSender
|
|
{
|
|
Task SendEmailAsync(string email, string subject, string message);
|
|
}
|