Please help with triggered emails

Hello, im doing an email validator with random codes that are sent to the email to verificate the identity. But it only send the email with the random code if i run the code from an administrator member account in my members area.

//the page code
import wixData from 'wix-data';
import {validaremail} from 'backend/emailvalidator';
import {checking4} from 'backend/emailvalidator';
import wixUsers from 'wix-users';
import wixLocation from 'wix-location';

var userEmail;
let user = wixUsers.currentUser;
user.getEmail()
.then( (email) => {
    userEmail = email; // "user@something.com"
} )
let emailcomprador;

$w.onReady(function () {
    $w('#numref').onInput(()=> {checking();})
    $w('#numped').onInput(()=> {checking();})
    $w('#emailcomp').onInput(()=> {checking1();})
    $w('#validarema').onClick(()=> {checking3();})
    $w('#button1').onClick(()=> {$w("#box").changeState("validador");})
    $w('#button6').onClick(()=> {check1();})
});

function check1() {
 if ($w('#dropdown1').value === '') {
        $w("#text77").show();
        setTimeout(function() {
            $w("#text77").hide()
 }, 3000);
 }
 if ($w('#dropdown1').value !== '') {
 switch ($w('#dropdown1').value){

 case 'bus':
                $w('#textoestado').text ="-"
                $w('#button2').label = "-"
                $w("#button2").onClick(() => {
                    buttoner(4);
 } );
                buttoner(1);
 break;
 case 'gen':
                buttoner(0);
 break;
 case 'cam':
                buttoner(0);
 break;
 case 'gla':
                buttoner(1);
                $w('#textoestado').text ="-"
                $w('#button2').label = "-"
                $w("#button2").onClick(() => {
 //wixLocation.to("/");
 } );
 break;
 case 'taq':
                $w('#textoestado').text ="--"
                $w('#button2').label = "-"
                $w("#button2").onClick(() => {
                    buttoner(4);
 } );
                buttoner(1);
 break;
 
 }
 }
}

function checking3() {

 checking4($w('#emailcomp').value, emailcomprador, userEmail)
 .then( (res) => {
 switch (res){
 case 0:
                $w('#text70').hide()
                $w('#text75').text = "-"
                $w("#emailcomp").value = '';
                $w("#text75").show()
                setTimeout(function() {
                     $w("#text75").hide()
                     $w('#text70').show()
 }, 3000);
 break;
 case 1:
                $w('#textoestado').text ="-"
                $w('#button2').label = "-"
                $w("#button2").onClick(() => {
                    buttoner(4);
 } );
                buttoner(1);
 break;
 case 2:
                buttoner(2);
                $w("#button4").onClick(() => {
                    validaremail($w('#emailcomp').value, $w("#numref").value); /* this part is the one*/
                    buttoner(6);
 } );
 break;
 }
 } );

}

function checking() {
 if ($w('#numped').value!== "" && $w('#numref').value!=="") {
    $w('#validar').enable()
 }
}
function checking1() {
 if ($w('#emailcomp').value!== "") {
    $w('#validarema').enable()
 }
}

function buttoner(val){
 switch (val){
 case 0:
            $w('#box').changeState("validador");
 break;
 case 1:
            $w("#box").changeState("final");
 break;
 case 2:
            $w("#box").changeState("precode");
 break;
 case 3:
            $w("#box").changeState("noencontrado");
 break;
 case 4:
            $w("#box").changeState("Tipo");
 break;
 case 5:
            $w("#box").changeState("emailvalidator");
 break;
 case 6:
            $w("#box").changeState("emailvalidator2");
 break;
 }
}

Now the code in backend

import wixData from 'wix-data';
import wixCrmBackend from 'wix-crm-backend';
import { contacts } from 'wix-crm-backend';

export function validaremail(emailcomp, numref) {
 let code = randomNumber(6);
 let toInsert = {
 "code": code,
 "emailcomp": emailcomp,
 "estado": "NVAL"
 };
    wixData.insert("emailsvalidados", toInsert)
 .then( (results) => {
 let item = results; 
 } )
 .catch( (err) => {
 let errorMsg = err;
 } );

    contacts.queryContacts()
 .eq("primaryInfo.email", emailcomp/* its an email from an input in the page*/)
 .find()
 .then((res) => {
 let firstItem = res.items[0];
 let id = firstItem._id;
        console.log(id);
        wixCrmBackend.emailContact('SYvIH8l', id, {
 "variables": {
 "code": code,
 "numref": numref
 }
 } );
 
 })

}

export function checking4(emailform, emailcomp, emailuser) {
 if (emailcomp === emailform) {
 if (emailcomp === emailuser){
 return 1;
 }
 if (emailcomp !== emailuser){
 return 2;
 }
 }
 if (emailcomp !== emailform){
 return 0;
 }
}

function randomNumber (len) {
 var x;
 var n = '';
 for(var count = 0; count < len; count++) {
 let randomNumber1 = Math.floor(Math.random() * 10);
        n += randomNumber1.toString();
 }
 return n;
}

i dont know why it only sends the emails from administrator accounts and the rest of the members cant use that funcion.
If someone could help pleease.
Thank you so much.

Now i have done some changes to the code , it works, but only from admin accounts
Backend code:

import wixData from 'wix-data';
import wixCrmBackend from 'wix-crm-backend';
import { contacts } from 'wix-crm-backend';

export function validaremail(emailcomp, numref) {
 
 let code = randomNumber(6);
 let toInsert = {
 "code": code,
 "emailcomp": emailcomp,
 "estado": "NVAL"
 };
 
  wixData.insert("emailsvalidados", toInsert)
 .then( (results) => {
 let item = results; 
 } )
 .catch( (error) => {
    console.error(error);
 } );
 
  sendEmailToContact(emailcomp, numref, code);

}

export function checking4(emailform, emailcomp, emailuser) {
 if (emailcomp === emailform) {
 if (emailcomp === emailuser){
 return 1;
 }
 if (emailcomp !== emailuser){
 return 2;
 }
 }
 if (emailcomp !== emailform){
 return 0;
 }
}


function randomNumber (len) {
var x;
 var n = '';
 for(var count = 0; count < len; count++) {
 let randomNumber1 = Math.floor(Math.random() * 10);
        n += randomNumber1.toString();
 }
 return n;
}

export async function sendEmailToContact(emailcomp, numref, code) {
 let contactId;
 const emailToFind = emailcomp
 const queryResults = await contacts.queryContacts()
 .eq("info.emails.email", emailToFind)
 .find();
 const contactsWithEmail = queryResults.items;

 if (contactsWithEmail.length === 1) {

    console.log('Found 1 contact');
    contactId = contactsWithEmail[0]._id;

 } else if (contactsWithEmail.length > 1) {

    console.log('Found more than 1 contact');
 // Handle when more than one contact is found

 } else {

    console.log('No contacts found');
 // Handle when no contacts are found

 }
 
 const triggeredEmailTemplate = "SYvIH8l";

  wixCrmBackend.emailContact(triggeredEmailTemplate, contactId, {
 "variables": {
 "code": code,
 "numref": numref
 }} )
 .then(() => {
      console.log('Email sent to contact');
 })
 .catch((error) => {
      console.error(error);
 });
}

Perhaps J.D. or Yisrael, Giri, (or Bruno) can help here.

Please help

Hey Alejandro, looking through your code for both frontend and backend, the first suggestion that comes to mind is to add a few more console logs towards the end of your sendEmailToContact function. I tested your contactsQuery and your BE function on a test site above, and it seems good to go.

Another thing would be to have a new site member test the functionality, and check the Settings > Site Monitoring section to see what happens when they try to validate the email. That would give you a look at the backend functions running.

3rd suggestion would be to switch out the wixCrmBackend . emailContact, with the wixUsersBackend.emailUser() API instead, since your visitors are already full site members.

Whats the current state here?