Is there any mailing client that supports ROR Api that allows sending bulk emails. The key is to have separate cc for each recipient. So far I've been using Mandrill but they are closing their bulk sending service as they became part of Mailchimp. Mailchimp doesn't support that. I've been struggling to find any client that allows this option.
Asked
Active
Viewed 179 times
-1
-
Not sure about having control over explicitly putting a recipient as a cc: for most commercial services, but you can easily do it with ActiveMailer and Gmail (read their daily limits ~2000). – Carson Cole Apr 19 '16 at 16:13
2 Answers
1
It appears that due to security and anti-spam policy, most (if not all) ROR mailing clients do not support individual (specific) cc/bcc for each email in bulk sending. At least I haven't been able to find one.

Dragan Gojkovic
- 11
- 3
0
Looks like this is possible in 2023 thanks to ActiveMailer. https://guides.rubyonrails.org/action_mailer_basics.html#sending-email-to-multiple-recipients
The same format can be used to set carbon copy (Cc:) and blind carbon copy (Bcc:) recipients, by using the :cc and :bcc keys respectively.
mail(
subject: "New User Signup: #{@user.email}",
to: [to_email1, to_email2],
cc: [cc_email1, cc_email2],
bcc: [bcc_email1, bcc_email2]
)

alex
- 1,042
- 4
- 18
- 33