简体   繁体   English

使用MailChimp for .NET将邮件发送到密件抄送

[英]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进行.NET发送邮件,但是收件人的包装程序不包含类型,这是发送大量邮件所必需的。

                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 . MailChimp引用。 Scroll down to "Tips for creating your HTML Campaign". 向下滚动到“创建HTML广告系列的提示”。

MailChimp does not use a BCC field as each recipient on your list is hidden from all other recipients on your list. MailChimp不使用密件抄送字段,因为列表中的每个收件人都对列表中的所有其他收件人隐藏。 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". 我决定使用MCAPI.NET,并更改了源代码,为“收件人”添加了一个属性,名称为“ to”。

Setting this attribute to value "BCC" solved the problem. 将此属性设置为值“ BCC”可以解决此问题。

Note : MailChimp is a Newsletter sending software where Mandrill is a transactional mail sending component. 注意:MailChimp是时事通讯发送软件,其中Mandrill是事务性邮件发送组件。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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