CLOSER-Cohorts/archivist

View on GitHub
app/mailers/user_mailer.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class UserMailer < ApplicationMailer
  default from: (ENV["FROM_ADDRESS"] || '')

  def welcome(user)
    @user = user
    mail(to: @user.email, subject: 'Welcome to My Awesome Site')
  end
end