user2435866
user2435866

Reputation: 61

Using MailChimp for .NET sending mails to bcc

I'm using MailChimp for .NET sending mails, but the wrapper for the recipient doesn't contain a type, which the is necessary for sending massmails.

                MailChimp.Types.Mandrill.Messages.Recipient recipient = new MailChimp.Types.Mandrill.Messages.Recipient(member.EMail, member.Name);

Is it me who has missed something?

Upvotes: 1

Views: 2204

Answers (2)

user2435866
user2435866

Reputation: 61

I decided to use MCAPI.NET and changed the source adding a attribute to Recipient with name "to".

Setting this attribute to value "BCC" solved the problem.

Note : MailChimp is a Newsletter sending software where Mandrill is a transactional mail sending component.

Upvotes: 0

pritaeas
pritaeas

Reputation: 2093

Quoted from MailChimp. Scroll down to "Tips for creating your HTML Campaign".

MailChimp does not use a BCC field as each recipient on your list is hidden from all other recipients on your list. We deliver a completely separate copy of your email to each recipient on your list, allowing you to personalize your content for each recipient, track clicks and opens, and address each email to the recipient's name.

Upvotes: 2

Related Questions