Socket
Socket
Sign inDemoInstall

send-email-api

Package Overview
Dependencies
18
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    send-email-api

send email by node.js, supports smtp and sendcloud


Version published
Weekly downloads
3
increased by50%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

发送邮件 API

通过 Node.js 发送邮件,支持 SMTP 和 SendCloud

Installation

npm install send-email-api -S

Usage

1. SMTP

const fs = require('fs')
const { sendMail } = require('send-email-api')

const run = async () => {
  try {
    const emailConfig = {
      options: {
        host: 'smtp.sendcloud.net',
        auth: {
          user: 'username',
          pass: 'password',
        }
      },
      from: 'test<test@sendcloud.com>',
    }
    const emailData = {
      to: ['test@sendcloud.com'],
      subject: '测试通过 smtp 发送带附件的邮件',
      html: '<h3>hello world!</h3>',
      text: 'hello world!',
      attachments: [
        {
          filename: 'attachments-text.txt',
          content: fs.readFileSync('./test/attachments-text.txt'),
        },
        {
          filename: 'attachments-excel.xlsx',
          content: fs.readFileSync('./test/attachments-excel.xlsx'),
        },
      ],
    }
    const data = await sendMail(emailData, emailConfig)
    console.log(data)
  } catch (error) {
    console.error(error)
  }

  process.exit()
}

run()

2. SendCloud

const fs = require('fs')
const { sendMailCloud } = require('send-email-api')

const run = async () => {
  try {
    const emailServerConfig = {
      options: {
        auth: {
          user: 'api_user',
          pass: 'api_key',
        }
      },
      from: 'test<test@sendcloud.com>',
    }
    const emailData = {
      to: ['test@sendcloud.com'],
      subject: '测试通过 sendcloud 发送带附件的邮件',
      html: '<h3>hello world!</h3>',
      text: 'hello world!',
      attachments: [
        {
          filename: 'attachments-text.txt',
          content: fs.readFileSync('./test/attachments-text.txt'),
        },
        {
          filename: 'attachments-excel.xlsx',
          content: fs.readFileSync('./test/attachments-excel.xlsx'),
        },
      ],
    }
    const emailUrl = 'https://api.sendcloud.net/apiv2/mail/send'
    const data = await sendMailCloud(emailUrl, emailData, emailServerConfig)
    console.log(data)
  } catch (error) {
    console.error(error)
  }

  process.exit()
}

run()

API

  • sendMail: 通过 SMTP 方式发送邮件
  • sendMailCloud: 通过 SendCloud 方式发送邮件

参考

  1. nodemailer
  2. sendcloud

Keywords

FAQs

Last updated on 02 Mar 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc