UNPKG
nest-box
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
A lot of modules for NestJS in this box!
github.com/zhangcf233/nest-box
zhangcf233/nest-box
nest-box
/
src
/
email
/
email.interface.ts
14 lines
(13 loc)
•
242 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export
interface
EmailConfig
{
host
:
string
;
port
:
number
;
user
:
string
;
pass
:
string
;
fromName
?:
string
;
fromEmail
?:
string
; }
export
interface
EmailSendOptions
{
to
:
string
subject
:
string
html
:
string
}