feat(api): test /invoice/send

This commit is contained in:
2025-08-26 23:01:10 +02:00
parent 794558a007
commit 21ca6f0701
2 changed files with 47 additions and 1 deletions

View File

@@ -39,7 +39,7 @@ type sendReq struct {
To []string `json:"to"`
Cc []string `json:"cc"`
Bcc []string `json:"bcc"`
Subject string `json:"subjec"`
Subject string `json:"subject"`
Body string `json:"body"`
Invoice invoiceReq `json:"invoice"`
}