mvc3 中的邮件黑猩猩集成?

发布于 2025-01-07 04:51:20 字数 62 浏览 1 评论 0原文

我从过去两周开始就在谷歌搜索,但不知道如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浮世清欢 2025-01-14 04:51:20

Mailchimp 提供 API (哦,是的,我喜欢他们在这个 url 中命名资源的方式 < code>/api/rtfm/ - 搞笑)通过 HTTP 协议工作。这里有一些其他 API。所以我建议您首先阅读他们的文档。

然后您可以使用 WebClientHttpWebRequest 从您的应用程序使用此 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.

遇见了你 2025-01-14 04:51:20

这取决于您尝试在此处集成 MailChimp API 的技术框架。
至于 MVC 框架,我认为您应该浏览一下这个优秀的 github 存储库
它提供了一个简单的示例供参考以及说明和必要的文档。

正如那里提到的编辑Controller/AppController.php。在单引号内,粘贴您的 MailChimp API 密钥

$this->mc = new Mailchimp(''); //your api key here

另请参阅 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 into

$this->mc = new Mailchimp(''); //your api key here

Also refer the API documentation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文