mvc3 中的邮件黑猩猩集成?
我从过去两周开始就在谷歌搜索,但不知道如何在 mvc3 中集成邮件 chimp 。知道这个吗,有例子或链接吗?
I am googling since last two weeks but found no idea about how to integrate mail chimp in mvc3 . Does know about this, any example or link?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Mailchimp 提供 API (哦,是的,我喜欢他们在这个 url 中命名资源的方式 < code>/api/rtfm/ - 搞笑)通过 HTTP 协议工作。这里有一些其他 API。所以我建议您首先阅读他们的文档。
然后您可以使用 WebClient 或 HttpWebRequest 从您的应用程序使用此 API。
Mailchimp provide an API (oh, yeah, I like how they named the resource in this url
/api/rtfm/
- hilarious) that works over the HTTP protocol. And here are some other APIs. So I would recommend you first reading their documentation.Then you could use a WebClient or an HttpWebRequest to consume this API from your application.
这取决于您尝试在此处集成 MailChimp API 的技术框架。
至于 MVC 框架,我认为您应该浏览一下这个优秀的 github 存储库。
它提供了一个简单的示例供参考以及说明和必要的文档。
正如那里提到的编辑
Controller/AppController.php
。在单引号内,粘贴您的 MailChimp API 密钥另请参阅 API 文档。
It depends technology framework you are trying to integrate the MailChimp API here.
As when it comes to MVC framework, I think you should go through this excellent github repository.
It has a simple example given for reference along with the instructions and necessary documentation.
As mentioned over there edit
Controller/AppController.php
. Inside the single quotes, paste your MailChimp API Key intoAlso refer the API documentation.