using System.Threading.Tasks;
namespace FoodsharingSiegen.Server.Service
{
///
/// Service interface for sending emails.
///
public interface IMailService
{
///
/// Sends an email asynchronously.
///
/// The recipient's email address.
/// The subject of the email.
/// The HTML content of the email body.
/// A task that represents the asynchronous email sending operation.
Task SendEmailAsync(string toEmail, string subject, string htmlBody);
}
}