mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-02-04 19:10:57 -05:00
9 lines
323 B
TypeScript
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!'}
|
|
}
|