Port 7.7 - WIP
This commit is contained in:
13
src/Umbraco.Core/IEmailSender.cs
Normal file
13
src/Umbraco.Core/IEmailSender.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System.Net.Mail;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Umbraco.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// Simple abstraction to send an email message
|
||||
/// </summary>
|
||||
public interface IEmailSender
|
||||
{
|
||||
Task SendAsync(MailMessage message);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user