Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Socket
Sign inDemoInstall

@types/nodemailer

Package Overview
Dependencies
Maintainers
1
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/nodemailer

TypeScript definitions for Nodemailer


Version published
Weekly downloads
1.5M
increased by1.83%
Maintainers
1
Weekly downloads
 
Created

What is @types/nodemailer?

The @types/nodemailer package provides TypeScript type definitions for Nodemailer, a module for Node.js applications to allow easy email sending. The types enable TypeScript developers to use Nodemailer in their projects with the benefits of type checking and IntelliSense in their IDE. This package does not contain functionality by itself but adds type support for using Nodemailer in a TypeScript environment.

What are @types/nodemailer's main functionalities?

Sending Emails

This feature allows you to send emails using Nodemailer. The code sample demonstrates how to set up a transporter, configure it with SMTP server details, and send an email with both text and HTML content.

import nodemailer from 'nodemailer';

async function sendEmail() {
  let transporter = nodemailer.createTransport({
    host: 'smtp.example.com',
    port: 587,
    secure: false, // true for 465, false for other ports
    auth: {
      user: 'example@example.com', // generated ethereal user
      pass: 'password' // generated ethereal password
    }
  });

  let info = await transporter.sendMail({
    from: '"Fred Foo 👻" <foo@example.com>', // sender address
    to: 'bar@example.com, baz@example.com', // list of receivers
    subject: 'Hello ✔', // Subject line
    text: 'Hello world?', // plain text body
    html: '<b>Hello world?</b>' // html body
  });

  console.log('Message sent: %s', info.messageId);
}

sendEmail();

Other packages similar to @types/nodemailer

FAQs

Package last updated on 24 May 2019

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc