简体   繁体   中英

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?

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.

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM