I am using Roadie Rails gem
, and for some reason when I add bcc
field as an argument to the mail method, it does not send the email to the bcc'ed user and the bcc'ed user ends up showing in the to field of the final sent email. Any ideas why?
Example code:
mail(from: 'some_domain', to: 'someuser@test.com', bcc: ['another_user@test.com'], subject: 'Hi')
Am I missing something?