Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Confirm email with out Welcome email
Bezlepkin
New
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