mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 09:41:40 -05:00
18 lines
391 B
Ruby
18 lines
391 B
Ruby
|
|
# frozen_string_literal: true
|
||
|
|
|
||
|
|
class Users::DigestsMailer < ApplicationMailer
|
||
|
|
helper Users::DigestsHelper
|
||
|
|
helper CountryFlagHelper
|
||
|
|
|
||
|
|
def year_end_digest
|
||
|
|
@user = params[:user]
|
||
|
|
@digest = params[:digest]
|
||
|
|
@distance_unit = @user.safe_settings.distance_unit || 'km'
|
||
|
|
|
||
|
|
mail(
|
||
|
|
to: @user.email,
|
||
|
|
subject: "Your #{@digest.year} Year in Review - Dawarich"
|
||
|
|
)
|
||
|
|
end
|
||
|
|
end
|