1.0.6 • Published 2 years ago

@lfkz/nsemail v1.0.6

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

Describe

EN This is an encapsulation package for sending emails.(nodejs)

CN 这是一个用于发送电子邮件的封装包。(nodejs)

Example

const nsemail = require('@lfkz/nsemail')

nsemail({
    host:'smtp.qq.com',
    port:465,
    secure:true,
    auth:{
        user:'From_email',
        pass:'Authorize_code'
    }
},{
    from:'Email_username<From_email>',
    to:'To_email',
    cc:'Cc_mail',
    bcc:'Secret_mail',
    subject:'This is a test email title.',
    text:'Text',
    html:'<h1>Text</h1>',
    attachments:[{
        filename:'Attachment_name'
        path:'Attachment_path'
    }]
},(info) => {
    // success function
},(err) => {
    // error function
})
1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago