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.