Improve Self host setup (#30)

* Add self host setup

* Improve blunders

* Move to bull mq

* More changes

* Add example code for sending test emails
This commit is contained in:
KM Koushik
2024-06-24 08:21:37 +10:00
committed by GitHub
parent 8a2769621c
commit f77a8829be
67 changed files with 1771 additions and 688 deletions

View File

@@ -60,7 +60,10 @@ export interface paths {
"application/json": {
id: string;
teamId: number;
to: string;
to: string | string[];
replyTo?: string | string[];
cc?: string | string[];
bcc?: string | string[];
from: string;
subject: string;
html: string | null;
@@ -85,12 +88,13 @@ export interface paths {
requestBody: {
content: {
"application/json": {
/** Format: email */
to: string;
to: string | string[];
/** Format: email */
from: string;
subject: string;
replyTo?: string;
replyTo?: string | string[];
cc?: string | string[];
bcc?: string | string[];
text?: string;
html?: string;
attachments?: {