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
Following the admin_activation.rdoc guide I noticed that this two snippets of code won't work with latest release(2.25.0)
2.25.0
This one fails to override the email_to:
email_to
# Send account verification email to the admin email_to do if account[account_status_column] == account_unverified_status_value "[email protected]" else super() end end
This fails to override email's body
verify_account_email_body do "The user #{account[login_column]} has created an account. Click here to approve it: #{verify_account_email_link}." end
Thanks!
The text was updated successfully, but these errors were encountered:
Are you using rodauth-rails? There a custom mailer is generated on installation, which doesn't use these methods.
Sorry, something went wrong.
@janko that was it 🤦 thanks a bunch dude!
No branches or pull requests
Following the admin_activation.rdoc guide I noticed that this two snippets of code won't work with latest release(
2.25.0
)This one fails to override the
email_to
:This fails to override email's body
Thanks!
The text was updated successfully, but these errors were encountered: