servico de email incluido em drives

This commit is contained in:
MarcioJRGodoi 2024-06-26 09:50:45 -03:00
parent 665386f17b
commit ee9317406d
6 changed files with 250 additions and 1 deletions

9
dist-require/email/email.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>>;