diff options
author | Rafael França <rafael@franca.dev> | 2019-07-26 13:27:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-26 13:27:23 -0400 |
commit | a40da823d729296514f310d13a09ce8e0b37b699 (patch) | |
tree | e23975a060a7621825afe7706381ad01f71e08ef /actionmailbox/lib | |
parent | d937e1f4ca6da53cc641fca808fd79919f579c62 (diff) | |
parent | 09e5d6d0040211a513d47ea7309af31aa719ed5b (diff) | |
download | rails-a40da823d729296514f310d13a09ce8e0b37b699.tar.gz rails-a40da823d729296514f310d13a09ce8e0b37b699.tar.bz2 rails-a40da823d729296514f310d13a09ce8e0b37b699.zip |
Merge pull request #35992 from jduff/include_bcc
Fix Bcc header missing with emails from conductor and test helpers
Diffstat (limited to 'actionmailbox/lib')
-rw-r--r-- | actionmailbox/lib/action_mailbox/test_helper.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/actionmailbox/lib/action_mailbox/test_helper.rb b/actionmailbox/lib/action_mailbox/test_helper.rb index d248fa8734..dc6a0229f7 100644 --- a/actionmailbox/lib/action_mailbox/test_helper.rb +++ b/actionmailbox/lib/action_mailbox/test_helper.rb @@ -14,7 +14,11 @@ module ActionMailbox # # create_inbound_email_from_mail(from: "david@loudthinking.com", subject: "Hello!") def create_inbound_email_from_mail(status: :processing, **mail_options) - create_inbound_email_from_source Mail.new(mail_options).to_s, status: status + mail = Mail.new(mail_options) + # Bcc header is not encoded by default + mail[:bcc].include_in_headers = true if mail[:bcc] + + create_inbound_email_from_source mail.to_s, status: status end # Create an +InboundEmail+ using the raw rfc822 +source+ as text. |