Commit 1a2ba999fe924b9615277be0fca089857e6ae3b3

Authored by daming
1 parent 4d2a59f8
Exists in master

Fix: bugfix

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
lib/sendcloud/deliverer.rb
... ... @@ -52,7 +52,7 @@ module Sendcloud
52 52 }
53 53  
54 54 [:cc, :bcc].each do |key|
55   - sendcloud_message[key] = rails_message[key].formatted if rails_message[key]
  55 + sendcloud_message[key] = rails_message[key].formatted.join(";") if rails_message[key]
56 56 end
57 57  
58 58 if rails_message.attachments.present?
... ...