top of page
// backend/emailModule.jsw import { triggeredEmails } from 'wix-crm-backend'; export function sendEmail(toEmail, subject, body) { return triggeredEmails.emailContact('search-results-email', { variables: { subject, body }, to: toEmail }); }
bottom of page