mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 07:37:39 +00:00
e9fc0bf5f7
Signed-off-by: Jef LeCompte <jeffreylec@gmail.com>
9 lines
190 B
TypeScript
9 lines
190 B
TypeScript
import {Config} from '../config';
|
|
import sendEmail from './email';
|
|
|
|
export default function sendNotification(cartUrl: string) {
|
|
if (Config.notifications.email) {
|
|
sendEmail(cartUrl);
|
|
}
|
|
}
|