initial
This commit is contained in:
24
ts/mail/delivery/smtpclient/index.ts
Normal file
24
ts/mail/delivery/smtpclient/index.ts
Normal 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';
|
||||
Reference in New Issue
Block a user