mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-04 18:06:08 +01:00
17 lines
518 B
C#
17 lines
518 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Services.Mails
|
|
{
|
|
// This class is used by the application to send email for account confirmation and password reset.
|
|
// For more details see https://go.microsoft.com/fwlink/?LinkID=532713
|
|
public class EmailSender : IEmailSender
|
|
{
|
|
public Task SendEmailAsync(string email, string subject, string message)
|
|
{
|
|
return Task.CompletedTask;
|
|
}
|
|
}
|
|
}
|