feat(mail): add smtp email delivery
This commit is contained in:
parent
faddaa91d0
commit
3456b04ed4
25 changed files with 529 additions and 60 deletions
|
|
@ -42,7 +42,15 @@ export type SmtpSettings = {
|
|||
host: string;
|
||||
port: string;
|
||||
username: string;
|
||||
password?: string;
|
||||
security: "starttls" | "tls" | "none";
|
||||
fromAddress: string;
|
||||
replyToAddress: string;
|
||||
tls: boolean;
|
||||
recipientAddress: string;
|
||||
bccAddress?: string;
|
||||
lastTestAt?: string;
|
||||
lastTestStatus?: "success" | "error";
|
||||
lastDeliveryAt?: string;
|
||||
lastDeliveryStatus?: "success" | "error";
|
||||
lastError?: string;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue