parent
43feac153a
commit
269cff5bf5
|
|
@ -9,7 +9,7 @@ namespace Company.WebApplication1.Services
|
||||||
// For more details see https://go.microsoft.com/fwlink/?LinkID=532713
|
// For more details see https://go.microsoft.com/fwlink/?LinkID=532713
|
||||||
public class EmailSender : IEmailSender
|
public class EmailSender : IEmailSender
|
||||||
{
|
{
|
||||||
public Task SendEmailAsync(string email, string subject, string message)
|
public Task SendEmailAsync(string email, string subject, string htmlMessage)
|
||||||
{
|
{
|
||||||
return Task.CompletedTask;
|
return Task.CompletedTask;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,6 @@ namespace Company.WebApplication1.Services
|
||||||
{
|
{
|
||||||
public interface IEmailSender
|
public interface IEmailSender
|
||||||
{
|
{
|
||||||
Task SendEmailAsync(string email, string subject, string message);
|
Task SendEmailAsync(string email, string subject, string htmlMessage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ namespace Company.WebApplication1.Identity.Services
|
||||||
// For more details see https://go.microsoft.com/fwlink/?LinkID=532713
|
// For more details see https://go.microsoft.com/fwlink/?LinkID=532713
|
||||||
public class EmailSender : IEmailSender
|
public class EmailSender : IEmailSender
|
||||||
{
|
{
|
||||||
public Task SendEmailAsync(string email, string subject, string message)
|
public Task SendEmailAsync(string email, string subject, string htmlMessage)
|
||||||
{
|
{
|
||||||
return Task.CompletedTask;
|
return Task.CompletedTask;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,6 @@ namespace Company.WebApplication1.Identity.Services
|
||||||
{
|
{
|
||||||
public interface IEmailSender
|
public interface IEmailSender
|
||||||
{
|
{
|
||||||
Task SendEmailAsync(string email, string subject, string message);
|
Task SendEmailAsync(string email, string subject, string htmlMessage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue