Files
Compass/backend/api/src/test.ts
2025-10-25 16:52:11 +02:00

9 lines
323 B
TypeScript

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