Currently, devise's mailer_sender is hard coded. We eventually want to update this email address from an FRA to a Rootable one, we might even end up changing our url from .org to .coop. These changes are easier to facilitate with an environment variable.
Screenshot 2025年08月25日 at 12.45.52 PM
Change it to something like
config.mailer_sender = ENV['MAILER_SENDER']
Currently, devise's mailer_sender is hard coded. We eventually want to update this email address from an FRA to a Rootable one, we might even end up changing our url from .org to .coop. These changes are easier to facilitate with an environment variable.

Change it to something like
`config.mailer_sender = ENV['MAILER_SENDER']`