c# asp.net mailchimp

Cómo integrar MailChimp en C#/.Net



asp.net (6)

Eche un vistazo a PerceptiveMCAPI en CodePlex:

PerceptiveMCAPI: un contenedor compatible con .NET para MailChimp Api escrito en C # por Perceptive Logic.

http://perceptivemcapi.codeplex.com/

Quiero enviar un correo electrónico a través de MailChimp. ¿Cómo hacer esto en .Net?

¿Alguien tiene código de ejemplo?

Gracias.


El siguiente ejemplo enviará un correo electrónico opt-in:

Primero instale el paquete NuGet: Install-Package mcapi.net

static void Main(string[] args) { const string apiKey = "6ea5e2e61844608937376d514-us2"; // Replace it before const string listId = "y657cb2495"; // Replace it before var options = new List.SubscribeOptions(); options.DoubleOptIn = true; options.EmailType = List.EmailType.Html; options.SendWelcome = false; var mergeText = new List.Merges("[email protected]", List.EmailType.Text) { {"FNAME", "John"}, {"LNAME", "Smith"} }; var merges = new List<List.Merges> { mergeText }; var mcApi = new MCApi(apiKey, false); var batchSubscribe = mcApi.ListBatchSubscribe(listId, merges, options); if (batchSubscribe.Errors.Count > 0) Console.WriteLine("Error:{0}", batchSubscribe.Errors[0].Message); else Console.WriteLine("Success"); Console.ReadKey(); }



Puedes probar esto en CodePlex:

mcapinet


Verifique https://github.com/danesparza/MailChimp.NET por Dan Esparza . Puede instalar el paquete utilizando la consola de Package Manager.

Install-Package MailChimp.NET

Ejemplo de código

MailChimpManager mc = new MailChimpManager("YourApiKeyHere-us2"); ListResult lists = mc.GetLists();

Para envío de correo electrónico y estadísticas, Mailchimp ofrece Mandrill por Shawn Mclean https://github.com/shawnmclean/Mandrill-dotnet

Puedes instalar Mandrill usando

Install-Package Mandrill

Ejemplo de código

MandrillApi api = new MandrillApi("xxxxx-xxxx-xxxx-xxxx"); UserInfo info = await api.UserInfo();


intente usar el servicio más nuevo de mailchimp - Mandrill (servicio de correo electrónico transaccional)

Puedes usarlo a través de smtp estándar o api.

http://mandrillapp.com/