Question:
How can we prevent automated emails from being sent upon automated new user registration/approval using wix-members-backend API code?
Product:
Velo
What are you trying to achieve:
We have a registration/approval flow completely handled by backend code, which is called by our mobile app. This is done within http-functions.js similarly to how the Velo API documentation shows, by first using:
results = await authentication.register(memberEmail, password, {
"contactInfo": {
[FIRSTNAME_FIELD]: firstName,
[LASTNAME_FIELD]: lastName}
});
Then sending a triggered email to this user with an authentication code for them to input into the mobile app registration flow:
await triggeredEmails.emailMember('verifyAppRegistration', userid, {
"variables": {
"subscriberFirstName": firstName,
"verificationCode": generatedCode,
"expirationDate" : expirationDateString
}
});
and then a function called from the mobile app once they enter the generated code sent to their email to approve their registration:
await authentication.approveByToken(approvalToken);
All this works fine. However, we notice that upon registering the new member with the authentication.register()
API, the admin account on our site receives TWO emails, the subject line of which is “You Have a New Site Member Request”.
Further, when the user successfully is approved via authentication.approveByToken()
, they get an automated email, the subject line of which reads “ approved your membership request”.
As this is a completely automated flow, we don’t need the email sent to the Admin account (and I certainly don’t need TWO emails sent), and we also don’t want the newly approved user to receive this automated email.
Can these be turned off?
What have you already tried:
I have these settings in the Signup and Login Security section of the site:
I noticed this documentation:
This might make sense for a registration flow that is from the website, but in our case our website is purely marketing materials - there is no “log in” even available. All login and member activity is done through the mobile app.
So when a user receives an email with a “login button” it is confusing to them.
Additional information:
[Include any other pertinent details or information that might be helpful for people to know when trying to answer your question.]