UNPKG
@toobstudio/send-email
Version:
latest (1.1.4)
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
Secure SDK for sending emails using the TOOB Mail API
@toobstudio/send-email
/
dist
/
index.d.ts
8 lines
(7 loc)
•
198 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
interface
SendEmailParams
{
to
?:
string
[];
subject
:
string
;
message
:
string
;
plain_text
?:
string
; }
export
declare
function
sendEmail
(
params
:
SendEmailParams
):
Promise
<
void
>;