I have no idea why this wouldn't be an option but I can't find anywhere to check a box to send me (admin) an email when someone apply's to become a member of my forum. This is a P1 to me bc I need to be on top of the forum.
Are there any plugins if this is something I am not missing and was not included in the base Vanilla forum?
Has the Vanilla community gone dead? Where are the moderators? Would really appreciate an answer :)
Is there anyone out there that can help me make this happen?
1 · ·
Answers
- Spam
- Abuse
0 · Insightful Awesome LOL ·I am wondering if other open source forums can do this, and will look into it for my next forum for sure.
- Spam
- Abuse
0 · Insightful Awesome LOL ·- Spam
- Abuse
0 · Insightful Awesome LOL ·See https://github.com/vanillaforums/Garden/issues/1270#issuecomment-3164615
@lincolnwebs said:
- Spam
- Abuse
0 · Insightful Awesome LOL ·Work around
Edit the file: vanilla/applications/dashboard/models/class.usermodel.php
Search for: new Gdn_Email()
You will find it in function SendWelcomeEmail() and SendEmailConfirmationEmail()
After the line: $Email = new Gdn_Email();
Add a new line like: $Email->Bcc('admin@example.com');
Make sure to replace 'admin@example.com' with YOUR administrator email address.
Save the file.
That's it, you will receive email for new applicant.
- Spam
- Abuse
1 · Insightful 1Awesome LOL ·