aspnetcore/samples/IdentitySample.Mvc/MessageServices.cs

20 lines
473 B
C#

using System.Threading.Tasks;
namespace IdentitySamples
{
public static class MessageServices
{
public static Task SendEmailAsync(string email, string subject, string message)
{
// Plug in your email service
return Task.FromResult(0);
}
public static Task SendSmsAsync(string number, string message)
{
// Plug in your sms service
return Task.FromResult(0);
}
}
}