UNPKG
@xeuxdev/mailer
Version:
latest (0.1.2)
0.1.2
0.1.1
The mailer for your nodejs apps
github.com/xeuxdev/mailer
xeuxdev/mailer
@xeuxdev/mailer
/
src
/
mail
/
example.ts
19 lines
(17 loc)
•
275 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { sendMail }
from
"."
export {}
sendMail
({
message
: { //
from
: { //
name
:
"John"
, // //
address
:
"xeuxdev@gmail.com"
, // },
from
:
"John"
,
html
:
""
,
subject
:
"hey man"
,
bcc
: [
""
], },
transport
: {
service
:
"gmail"
, }, })