When sending emails, we use ActiveJob to deliver the emails asynchronously so that the user doesn't have to wait for the email to delivered before getting a response. Right now, we're just using the default adapter which only really meant for development and test environments.
We should wait to do this until we have a job defined so that we can validate that the changes work. After issue #116 is finished we'll have a job that sends out emails for account confirmation.
When sending emails, we use ActiveJob to deliver the emails asynchronously so that the user doesn't have to wait for the email to delivered before getting a response. Right now, we're just using the default adapter which only really meant for development and test environments.