diff options
author | Louise Crow <louise.crow@gmail.com> | 2014-01-28 16:56:32 +0000 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2014-01-28 16:56:32 +0000 |
commit | fc0c4ea6fa66dc2cbd839de013476205bf574c90 (patch) | |
tree | 676a51352756ba91f7c676db2d1225400f010a47 /lib/tasks/translation.rake | |
parent | 89a8fd2ce9880ae0f194733991aa93e447f0ba73 (diff) | |
parent | 0299747af77b5a7c870c31a99598ff1d2928b507 (diff) |
Merge branch 'feature/1176-automate-authority-contacts' into rails-3-develop
Conflicts:
doc/CHANGES.md
Diffstat (limited to 'lib/tasks/translation.rake')
-rw-r--r-- | lib/tasks/translation.rake | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/tasks/translation.rake b/lib/tasks/translation.rake index 6458d9268..b1f9d0b71 100644 --- a/lib/tasks/translation.rake +++ b/lib/tasks/translation.rake @@ -66,9 +66,10 @@ namespace :translation do 'Hello!') write_email(user_contact_email, 'Contact email (user to user)', output_file) - admin_contact_email = ContactMailer.from_admin_message(info_request.user, - 'A test message', - 'Hello!') + admin_contact_email = ContactMailer.from_admin_message(info_request.user.name, + info_request.user.email, + 'A test message', + 'Hello!') write_email(admin_contact_email, 'Contact email (admin to user)', output_file) # request mailer |