Files
smartmta/ts/mail/index.ts

17 lines
419 B
TypeScript
Raw Permalink Normal View History

// Export all mail modules for simplified imports
export * from './routing/index.js';
export * from './security/index.js';
// Make the core and delivery modules accessible
import * as Core from './core/index.js';
import * as Delivery from './delivery/index.js';
export { Core, Delivery };
// For direct imports
import { Email } from './core/classes.email.js';
// Re-export commonly used classes
export {
Email,
};