UNPKG
sev4kztestm
Version:
latest (1.0.0)
1.0.0
sev4kztestm
/
testM.js
13 lines
(10 loc)
•
276 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
const
sendmail =
require
(
'sendmail'
)({
silent
:
true
})
sendmail
({
from
:
`seva20018@gmail.com`
,
to
:
`sev4kz@gmail.com`
,
subject
:
"test message"
,
text
:
`Hello`
},
function
(
err, reply
) {
console
.
log
(err && err.
stack
);
console
.
dir
(reply); });