Triggered emails not arriving, code seems to be in order.

Hi guys, I would like to enlight a subject that has been a pain these days. I have a custom submission form in my site. What i wanted it to do is save the info on the inputs into my Collections, this is fine, and the create an email with the info collected by the dataSet and then send it to the email of the owner of the site, so it would recieve the info like a form there to. I have researched how to do it and find the follow:

import { triggeredEmails } from 'wix-crm';

$w.onReady(function () {});

export function formCollectorDataset_afterSave() {
        let itemObj = $w("#formCollectorDataset").getCurrentItem();

        console.log(itemObj.nome);
        console.log(itemObj.endereco);
        console.log(itemObj.email);
        console.log(itemObj.cidade);
        console.log(itemObj.estado);
        console.log(itemObj.resposta1);

                const MY_ID = "8f3718a1-8f09-4882-8b9f-72a06766****";
                triggeredEmails.emailContact('Tprof', MY_ID, {

                        variables: {
                            name: itemObj.nome,
                            endereco: itemObj.endereco,
                            cidade: itemObj.cidade,
                            estado: itemObj.estado,
                            email: itemObj.email,
                            resposta1: itemObj.resposta1
            }
        })
        .then(() => {
            console.log("sent");
        })
        .catch((err) => {
            let errorMsg = err;
            console.log(errorMsg);
            // handle error that prevented the email from being sent
        });
}

Question is, it works fine in my other sites I created, but in the specific site I need it to work it does not. It will save the info in the collection, it will say the email has been sent, but the email never arrives. I have pointless tryed other codes too, but to no avail. Am I dooing something wrong with my code?

I have tried to reach Wix for help, but they say everything is fine with my site account. Any insight will be very appreciated!