Socket
Book a DemoInstallSign in
Socket

@alepha/email

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@alepha/email

Email sending interface with multiple provider implementations (memory, local file, nodemailer).

latest
Source
npmnpm
Version
0.11.6
Version published
Weekly downloads
266
-41.92%
Maintainers
1
Weekly downloads
 
Created
Source

Alepha Email

Email sending interface with multiple provider implementations (memory, local file, nodemailer).

Installation

This package is part of the Alepha framework and can be installed via the all-in-one package:

npm install alepha

Module

Provides email sending capabilities for Alepha applications with multiple provider backends.

The email module enables declarative email sending through the $email descriptor, allowing you to send emails through different providers: memory (for testing), local file system, or SMTP via Nodemailer. It supports HTML email content and automatic provider selection based on environment configuration.

This module can be imported and used as follows:

import { Alepha, run } from "alepha";
import { AlephaEmail } from "alepha/email";

const alepha = Alepha.create()
	.with(AlephaEmail);

run(alepha);

Keywords

alepha

FAQs

Package last updated on 10 Nov 2025

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