This commit is contained in:
2025-10-24 08:09:29 +00:00
commit be406f94f8
95 changed files with 27444 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
/**
* SMTP Client Module Exports
* Modular SMTP client implementation for robust email delivery
*/
// Main client class and factory
export * from './smtp-client.ts';
export * from './create-client.ts';
// Core handlers
export * from './connection-manager.ts';
export * from './command-handler.ts';
export * from './auth-handler.ts';
export * from './tls-handler.ts';
export * from './error-handler.ts';
// Interfaces and types
export * from './interfaces.ts';
export * from './constants.ts';
// Utilities
export * from './utils/validation.ts';
export * from './utils/logging.ts';
export * from './utils/helpers.ts';