开发者

Mailchimp for dummies (php)

开发者 https://www.devze.com 2023-03-22 18:44 出处:网络
I have a home made php script that can send an email. Very simple : $html = \"<b>hello</b>\";

I have a home made php script that can send an email.

Very simple :

$html = "<b>hello</b>";
$to = "johndoe@gmail.com";
$from = "me@server.com";

sendMAIL($from, $to, $html);

How can I replace those lines开发者_Python百科 to use Mailchimp engine?

I have a Mailchimp account, and a Mailchimp API key.

Thank you for your help!


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)

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号