diff --git a/app/views/mailers/invoice_mailer/invoice_email.html.erb b/app/views/mailers/invoice_mailer/invoice_email.html.erb
index 35f0dbb6e..bab04883f 100644
--- a/app/views/mailers/invoice_mailer/invoice_email.html.erb
+++ b/app/views/mailers/invoice_mailer/invoice_email.html.erb
@@ -1,4 +1,5 @@
-<%= t(:you_have_a_new_invoice) %>
+<%= t(:you_have_a_new_invoice) %>
+<%= t(:monthly_invoice) if @invoice.monthly_invoice %>
<%= t(:sincerely) %>,
<%= Setting.registry_invoice_contact %>
diff --git a/app/views/mailers/invoice_mailer/invoice_email.text.erb b/app/views/mailers/invoice_mailer/invoice_email.text.erb
index ab8595474..4c17a410f 100644
--- a/app/views/mailers/invoice_mailer/invoice_email.text.erb
+++ b/app/views/mailers/invoice_mailer/invoice_email.text.erb
@@ -1,4 +1,5 @@
<%= t(:you_have_a_new_invoice) %>
+<%= t(:monthly_invoice) if @invoice.monthly_invoice %>
<%= t(:sincerely) %>,
<%= Setting.registry_invoice_contact %>
diff --git a/config/locales/en.yml b/config/locales/en.yml
index 9021eff60..ca4d2fba9 100644
--- a/config/locales/en.yml
+++ b/config/locales/en.yml
@@ -540,6 +540,7 @@ en:
bind_manually: 'Bind manually'
client: 'Client'
you_have_a_new_invoice: 'You have a new invoice.'
+ monthly_invoice: "Here comes the report with the last month's credit account activities."
sincerely: 'Sincerely'
expiry: 'Expiry'
failed_to_create_crt_csr_already_signed: 'Failed to create certificate: CSR is already signed'
diff --git a/config/locales/et.yml b/config/locales/et.yml
index 84672ed3c..be5075d5d 100644
--- a/config/locales/et.yml
+++ b/config/locales/et.yml
@@ -11,3 +11,6 @@ et:
already_paid: " (juba makstud)"
monthly_invoice: " (kuuaruanne)"
monthly_invoice_description: 'Kuuaruanne'
+ you_have_a_new_invoice: 'Teil on uus arve.'
+ monthly_invoice: "Siit tuleb aruanne möödunud kuul ettemaksukontoga seotud tasuliste toimingutega."
+ sincerely: 'Lugupidamisega'