Mailchimp 傻瓜版 (php)
我有一个自制的 php 脚本,可以发送电子邮件。
非常简单:
$html = "<b>hello</b>";
$to = "[email protected]";
$from = "[email protected]";
sendMAIL($from, $to, $html);
如何替换这些行以使用 Mailchimp 引擎?
我有一个 Mailchimp 帐户和一个 Mailchimp API 密钥。
感谢您的帮助!
I have a home made php script that can send an email.
Very simple :
$html = "<b>hello</b>";
$to = "[email protected]";
$from = "[email protected]";
sendMAIL($from, $to, $html);
How can I replace those lines to use Mailchimp engine?
I have a Mailchimp account, and a Mailchimp API key.
Thank you for your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MailChimp 本身不支持发送单个/事务性电子邮件。如果您希望能够发送单个/事务性电子邮件,则需要通过 MailChimp STS API 将 MailChimp 集成到 Amazon Web Services 简单电子邮件服务 (SES)
MailChimp 旨在向多个订阅者发送电子邮件/新闻通讯(营销活动)。如果
您只需要发送一封电子邮件,请坚持使用您的 php 解决方案...(或通过 MC STS 集成到 AWS SES)
MailChimp itself does not support sending single/transactoinal emails. If you want to have the ability to send a single/transactional email you will need to integrate MailChimp to Amazon Web Services Simple Email Service (SES) via the MailChimp STS API
MailChimp is geared towards sending emails/newsletters (campaigns) to multiple subscribers..
If you just need to send a single email, stick with your php solution... (Or integrate to AWS SES via MC STS)