Change parameter name to htmlMessage (#178)

Addresses #79
This commit is contained in:
Jass Bagga 2017-12-04 13:00:57 -08:00 committed by GitHub
parent 43feac153a
commit 269cff5bf5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -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;
} }

View File

@ -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);
} }
} }

View File

@ -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;
} }

View File

@ -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);
} }
} }