mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-26 19:28:01 +00:00
9 lines
336 B
C#
9 lines
336 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace PodNoms.Api.Services {
|
|
public interface IMailSender {
|
|
Task<bool> SendEmailAsync(string email, string subject, string message, string template = "email.html");
|
|
Task<bool> SendEmailAsync(string email, string subject, dynamic viewModel, string template = "email.html");
|
|
}
|
|
}
|