This commit is contained in:
MarcioJRGodoi 2024-06-26 09:55:39 -03:00
parent ee9317406d
commit 5fbd0d8eb2
11 changed files with 6 additions and 1 deletions

9
dist-import/email/index.d.ts vendored Normal file
View file

@ -0,0 +1,9 @@
import { type tipoResposta } from "p-respostas";
export declare const enviarEmail: ({ email, nome, assunto, texto, htlm, }: {
email: string;
nome?: string | undefined;
assunto: string;
/** Verão em texto do html, não obrigatório */
texto?: string | undefined;
htlm: string;
}) => Promise<tipoResposta<string>>;