Hello, I am having same issue, I have wix code setup to email on submission, the email sends in preview mode but not on published site. I have DB set to read only and permissions set to anyone. Please help.
//email on submission
import {sendEmail, sendEmailWithRecipient} from ‘backend/email’;
$w.onReady(function () {
$w(“#dataset1”).onAfterSave(sendFormData);
});
function sendFormData() {
const subject = Thank you for registering with GameChangerz University;
const body = https://drive.google.com/open?id=1KpushXasCuZCCYRyCayFqK0tgi4NqVyd ;
const recipient = $w(“#input9”).value;
sendEmailWithRecipient(subject, body, recipient)
.then(response => console.log(response));
sendEmail(subject, body)
.then(response => console.log(response));
}