New API endpoint: Send email using store SMTP (#3181)

Co-authored-by: Kukks <evilkukka@gmail.com>
This commit is contained in:
Wouter Samaey
2022-03-11 10:17:40 +01:00
committed by GitHub
parent c15f182377
commit c36b0c16b0
6 changed files with 184 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
namespace BTCPayServer.Client.Models
{
public class SendEmailRequest
{
public string Email;
public string Subject;
public string Body;
}
}