pboyd04 / spf-validator

This module provides a simple interface to validate if an IP address is a valid sender for a given email domain.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

spf-validator

Build Status Dependency Status Maintainability


Installation

This module is installed via npm:

npm install --save spf-validator-dns

Description

This module provides a simple interface to validate if an IP address is a valid sender for a given email domain.

Usage

const SPFValidator = require('spf-validator-dns').SPFValidator;

let validator = new SPFValidator({'domain': 'google.com', 'expandIncludes': true);
validator.validateSender('172.217.9.142').then(function(result){
  console.log(result); //Should be "PASS"
});

About

This module provides a simple interface to validate if an IP address is a valid sender for a given email domain.

License:Apache License 2.0


Languages

Language:JavaScript 100.0%