mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-05-09 07:34:55 -04:00
10 lines
349 B
TypeScript
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!'}
|
|
}
|