We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$params = array( 'subject' => 'Password Recovery', 'fullname' => 'Fullname' );
$this->mailer->createMessageFromView('password_recovery', $params)->to($user[0]['email'], $userInfo->firstname.' '.$userInfo->lastname)->subject('Password Recovery')->send();
so I have temporay fix this issue by add "$view->setVar('params',$params);" before the line number 320 in file name Manager.php
The text was updated successfully, but these errors were encountered:
@itpedia-la You have to use so if you need subarray
$params = array( 'params' => array( 'subject' => 'Password Recovery', 'fullname' => 'Fullname' ) ); ... ...createMessageFromView('password_recovery', $params); ...
Sorry, something went wrong.
No branches or pull requests
$params = array(
'subject' => 'Password Recovery',
'fullname' => 'Fullname'
);
$this->mailer->createMessageFromView('password_recovery', $params)->to($user[0]['email'], $userInfo->firstname.' '.$userInfo->lastname)->subject('Password Recovery')->send();
so I have temporay fix this issue by add "$view->setVar('params',$params);" before the line number 320 in file name Manager.php
The text was updated successfully, but these errors were encountered: