Files
Compass/backend/api/src/test.ts
2026-03-01 04:05:14 +01:00

10 lines
349 B
TypeScript

import {debug} from 'common/logger'
import {sendTestEmail} from 'email/functions/helpers'
export const localSendTestEmail = async () => {
sendTestEmail('hello@compassmeet.com')
.then(() => debug('Email sent successfully!'))
.catch((error) => console.error('Failed to send email:', error))
return {message: 'Email sent successfully!'}
}