Skip to content

Commit

Permalink
Fix user_count_exceeds_plan_limit_email error
Browse files Browse the repository at this point in the history
Fixes #1871
  • Loading branch information
mattwr18 committed May 16, 2024
1 parent 2bbef1e commit 6fae9c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/adapters/postmark_adapter/outbound.rb
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def user_count_exceeds_plan_limit_email
business_plan_name: organization.business_plan.name,
users_limit: organization.business_plan.number_of_users)
message_stream = Setting.postmark_transactional_stream
@text = [subject, I18n.t('adapter.postmark.user_count_exceeds_plan_limit.text', organization_name: organization.name)]
@text = [subject, I18n.t('adapter.postmark.user_count_exceeds_plan_limit.text', organization_name: organization.name)].join("\n")
mail(to: admin.email, subject: subject, message_stream: message_stream)
end

Expand Down

0 comments on commit 6fae9c2

Please sign in to comment.