A couple email configuration items have changed.
replace:
config :coherence,
email_from: {"Some Name", "myname@domain.com"}
with:
config :coherence,
email_from_name: "Some Name",
email_from_email: "myname@domain.com"
The following boilerplate files have been updated:
- web/controllers/coherence/cofirmation_controller.ex
- web/controllers/coherence/redirects.ex
- web/controllers/coherence/registration_controller.ex
- web/controllers/coherence/session_controller.ex
- web/emails/coherence/user_email.ex
- web/models/coherence/user.ex
- web/templates/coherence/registration/edit.html.eex
- web/templates/coherence/registration/edit.html.eex
- web/views/coherence/coherence_view_helpers.ex
To update the boilerplate, run:
mix coherence.install --reinstall
Run a git diff
to review the updated files. If you had updated any of the boilerplate files, you may need to manually integrate the changes into the newly generated files.