Format ./web/backend/Infrastructure/Infrastructure.Email

This commit is contained in:
Aaron Po
2026-06-20 15:13:01 -04:00
parent 9ac039dfeb
commit a37f2971a7
3 changed files with 14 additions and 37 deletions

View File

@@ -21,10 +21,5 @@ public interface IEmailProvider
/// <param name="subject">Email subject line</param>
/// <param name="body">Email body (HTML or plain text)</param>
/// <param name="isHtml">Whether the body is HTML (default: true)</param>
Task SendAsync(
IEnumerable<string> to,
string subject,
string body,
bool isHtml = true
);
}
Task SendAsync(IEnumerable<string> to, string subject, string body, bool isHtml = true);
}