Submit social housing lettings and sales data (CORE)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
434 B

class MergeCompletionMailer < NotifyMailer
MERGE_COMPLETION_TEMPLATE_ID = "xxx".freeze
def send_merge_completion_mail(email, merged_organisation_name, absorbing_organisation_name, merge_date, username)
send_email(
email,
MERGE_COMPLETION_TEMPLATE_ID,
{
merged_organisation_name:,
absorbing_organisation_name:,
merge_date:,
email:,
username:,
},
)
end
end