Vanilla open source was terminated 1 January 2025 by Higher Logic. See this announcement for more information.
Confirm email with out Welcome email

Hi! After registration i get Welcome email. How get confirm email?
Immediately, with out Welcome email?
Tagged:
0
Comments
There's that code in entrycontroller:
So I would try adding
$Configuration['Garden']['Registration']['SendConnectEmail'] = FALSE;
to /conf/config.phpIf that doesn't work: there's the line
public function SendWelcomeEmail($UserID, $Password, $RegisterType = 'Add', $AdditionalData = NULL) {
in/applications/dashboard/models/class.usermodel.php
.If you add
return;
after that line, there will never be any welcome mail at all. But all changes to the core files should be avoided. You'll lose that customizations on every update.Line number 1075
Before
After changes