since we are able to set field email as not required, then there should be a switch to turn off activation via email.
Or maybe it's something that I didn't notice.
// Send the Email to the given user object.
// $user->profile->email needs to be set.
public function sendRegistrationEmail($user) {
if (!isset($user->profile->email))
throw new CException(Yum::t('Email is not set when trying to send Registration Email'));
...
}
since we are able to set field email as not required, then there should be a switch to turn off activation via email.
Or maybe it's something that I didn't notice.