Skip to content

nodemailer/nodemailer-ntlm-auth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NTLM authentication for Nodemailer

Nodemailer 5+ allows to use custom authentication mechanisms. While there is no support in Nodemailer for NTLM then it can be provided with an addon.

NB! Experimental! Might not work as advertised due to the lack of not being actually able to use any real NTLM capable server

Install

Requires Nodejs v8.0.0 or newer

npm install nodemailer-ntlm-auth

Usage

const nodemailer = require('nodemailer');
const nodemailerNTLMAuth = require('nodemailer-ntlm-auth');

let transporter = nodemailer.createTransport({
    host: 'smtp.example.com',
    port: 465,
    secure: true,
    auth: {
        type: 'custom',
        method: 'NTLM',
        user: 'username',
        pass: 'verysecret',
        options: {
            domain: 'my-domain',
            workstation: 'my-desktop'
        }
    },
    customAuth: {
        NTLM: nodemailerNTLMAuth
    }
});

transporter.sendMail({
    from: '[email protected]',
    to: '[email protected]',
    subject: 'hello world!',
    text: 'hello!'
}, console.log)

About

NTLM authentication module for Nodemailer

Resources

Stars

Watchers

Forks

Packages

No packages published