Amending Approved Member Triggered Email

Hello, I have looked through similar old threads here but haven’t found one that covers what I am after. The member area sends out the automatic wix trigger emails that we can’t amend (sadly), firstly I was wondering if anyone knows a workaround?

If not… is there a way to get it to stop directing people to the wix app? Example below of what is received.

Thanks.

Automated emails like this one and ones that come from other apps like Wix Forms etc, can’t be turned off or edited unfortunately. Although Wix Events and Wix Stores you can customise them yourself through the settings for each app.

https://www.wix.com/corvid/forum/community-discussion/corvid-community-guidelines

No Thread Hijacking. Don’t post about an issue and then bump other threads with your issue.

Hi GOS, thank you, so if I use either Events or Store and have them as log in only I can remove the current triggered emails I am getting? Thank you

No you can’t remove them, you can just edit the automated ones that get sent out.
https://support.wix.com/en/article/editing-the-default-emails-sent-in-wix-events
https://support.wix.com/en/article/about-confirmation-emails-in-wix-stores
https://support.wix.com/en/article/customizing-your-confirmation-email-in-wix-bookings
https://support.wix.com/en/article/customizing-your-cancelation-email-in-wix-bookings

I think I have found a work around, I have made the sign up approve to everyone and I have set member permissions on all the pages except for the account page. Once someone signs up I will send them an automatic email saying they are being reviewed. Once they have been reviewed then I will change their member permissions so they have access.

I am just trying to change it so that upon sign up they are approved automatically rather than needing to verify their email, otherwise they get the verify email and the email from me saying they are going to be approved. I would also rather they went to a light box saying you are being approved than to the email verify message on the screen.

I believe it should be something like this on the sign up page code?

import wixUsers from ‘wix-users’;
let email =
let password =
wixUsers.register(email, password)
.then( (result) => {
let status = result.status; // “Active”
let user = result.user;
} );

If you are going to do something like that, then you might as well just set signup to be manually approved, then you can send out your own email that they are waiting to be approved,

Then when you manually approve them, the automated email gets sent to them telling them that they are now a site member.

The reason I changed to that was becuase the email they are approved tells them to download the wix app, which I don’t really want them to get. I didn’t think I could do the above code with the submit for approval only the everyone is approved setting or have I got that wrong?

Thanks for your help!