admin 发表于 2014-8-10 21:07:57

免费SMTP邮件服务:Mandrill

1、Mandrill 免费配额12000封/月有API

2、Mandrill给免费用户每月12000封的发邮件配额,平均一天是400封,提供了SMTP API,支持curl、JSON、python、php、ruby、nodejs、dart等。PHP的代码示例如下:
<?php

include_once "swift_required.php";

//

$transport = Swift_SmtpTransport::newInstance('smtp.mandrillapp.com', 587);
$transport->setUsername($MANDRILL_USERNAME);
$transport->setPassword($MANDRILL_PASSWORD);
$swift = Swift_Mailer::newInstance($transport);

//

?>3、Mandrill 注册时需要挂上DL,因为Mandrill已经不支持国内IP注册,不过使用没有问题。

官方网站:https://www.mandrill.com/
页: [1]
查看完整版本: 免费SMTP邮件服务:Mandrill