From 898850ba8a7c23460f2a101b4c1feaa4b06c73b4 Mon Sep 17 00:00:00 2001 From: Petko Bordjukov Date: Wed, 21 Oct 2015 23:57:21 +0300 Subject: [PATCH] Tweak volunteer mailer subject --- app/mailers/volunteer_mailer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/mailers/volunteer_mailer.rb b/app/mailers/volunteer_mailer.rb index d5fbc9a..d30a5fc 100644 --- a/app/mailers/volunteer_mailer.rb +++ b/app/mailers/volunteer_mailer.rb @@ -4,7 +4,7 @@ class VolunteerMailer < ActionMailer::Base @volunteer = new_volunteer mail(to: @volunteer.conference.email, - subject: "Нов доброволец – #{@volunteer.name} <#{@volunteer.email}> за екипи #{@volunteer.volunteer_teams.map(&:name).join(', ')}") + subject: "Нов доброволец – #{@volunteer.name} <#{@volunteer.email}> за екип(и) #{@volunteer.volunteer_teams.map(&:name).join(', ')}") end def volunteer_notification(new_volunteer)