2025-10-28 19:46:17 +00:00
|
|
|
// Export all mail modules for simplified imports
|
2026-02-10 15:31:31 +00:00
|
|
|
export * from './routing/index.js';
|
|
|
|
|
export * from './security/index.js';
|
2025-10-28 19:46:17 +00:00
|
|
|
|
|
|
|
|
// Make the core and delivery modules accessible
|
2026-02-10 15:31:31 +00:00
|
|
|
import * as Core from './core/index.js';
|
|
|
|
|
import * as Delivery from './delivery/index.js';
|
2025-10-28 19:46:17 +00:00
|
|
|
|
|
|
|
|
export { Core, Delivery };
|
|
|
|
|
|
|
|
|
|
// For direct imports
|
2026-02-10 15:31:31 +00:00
|
|
|
import { Email } from './core/classes.email.js';
|
2025-10-28 19:46:17 +00:00
|
|
|
|
|
|
|
|
// Re-export commonly used classes
|
|
|
|
|
export {
|
|
|
|
|
Email,
|
|
|
|
|
};
|