Skip to main content
The Deno 2 Release Candidate is here
Learn more

smtp-commands-formater

Utility module to create well formated smtp command strings

The module follows RFC5321 guidelines

It is dependencies free.

In Scope

Delivering a simple api only responsible to create well formated smtp command strings aligned with RFC5321.

Out of Scope

Validating the data passed to the api methods this is the subject of another module ( will publish soon ).

Usage

import { Commands } from "https:deno.land/x/smtp_commands@latest/"

const clientHostname = 'example.com';
const heloCmd: string = Commands.HELO( clientHostname );

console.log( heloCmd )
// expects 'HELO example.com\r\n';

smtp_connection