Continue to modularize even more components

This commit is contained in:
2021-12-28 21:52:41 -08:00
parent c1b0d88b4c
commit 81f156475d
9 changed files with 40 additions and 12 deletions

View File

@@ -0,0 +1,19 @@
using Microsoft.Extensions.Logging;
using TwilioSMSReceiver.Common.MessageHandlers;
using TwilioSMSReceiver.Data.Models;
namespace TwilioSMSReceiver.Common.Handlers
{
public class SMTPHandler : BaseHandler
{
public SMTPHandler(IServiceProvider serviceProvider) : base(serviceProvider)
{
}
public override Task<bool> RelaySms(SMSModel model)
{
_logger.LogWarning("SMTP isn't implemented yet");
return Task.FromResult(false);
}
}
}