Sha256: c54473a15bdf1940be930fc86459336795b0477e26e86ab0a7e9e3b673bf8a7d
Contents?: true
Size: 497 Bytes
Versions: 31
Compression:
Stored size: 497 Bytes
Contents
module Dorsale module Flyboy class TaskMailer < ::Dorsale::ApplicationMailer def new_task(user, task) @author = user @task = task mail( :to => task.owner.email, :subject => t("emails.task.new.subject"), ) end def term_email(task) @task = task mail( :to => task.owner.email, :subject => t("emails.task.term.subject", task = task.name), ) end end end end
Version data entries
31 entries across 31 versions & 1 rubygems