mirror of
https://github.com/xtr-dev/payload-mailing.git
synced 2025-12-10 16:23:23 +00:00
25 lines
561 B
TypeScript
25 lines
561 B
TypeScript
// Main plugin export
|
|
export { default as mailingPlugin } from './plugin'
|
|
export { mailingPlugin } from './plugin'
|
|
|
|
// Types
|
|
export * from './types'
|
|
|
|
// Services
|
|
export { MailingService } from './services/MailingService'
|
|
|
|
// Collections
|
|
export { default as EmailTemplates } from './collections/EmailTemplates'
|
|
export { default as EmailOutbox } from './collections/EmailOutbox'
|
|
|
|
// Jobs
|
|
export * from './jobs'
|
|
|
|
// Utility functions for developers
|
|
export {
|
|
getMailing,
|
|
sendEmail,
|
|
scheduleEmail,
|
|
processOutbox,
|
|
retryFailedEmails,
|
|
} from './utils/helpers' |