In vokuro, on registering a user, a mail is sent from the model's aftersave() method which has the following code.
$this->getDI()->getFlash()->notice('A confirmation mail has been sent to ' . $this->email);
This does not obey the template and shows this message in a blank page.
I want this notification in my controller where the $user->save() is called, and from there i want to show the message as done in the model.
Any help will be appreciated.