Mandrill is a reliable, scalable, and secure delivery API for transactional emails from websites and applications. It's ideal for sending data-driven transactional emails, including targeted e-commerce and personalized one-to-one messages.
Sign UpTrusted by more than 500,000 customers, Mandrill runs on a globally distributed infrastructure that can deliver emails in milliseconds.
99.99%
100%
0.0%
Status Updated: April 30, 2013 06:30 PM UTC
See how we make SMTP fast – and why you should care
Don't spend all day wiring up your own bulky custom solution. Get started with Mandrill's SMTP or API integration in no time.
<?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);
//
?>
require 'mail'
Mail.defaults do
delivery_method :smtp, {
:port => 587,
:address => "smtp.mandrillapp.com",
:user_name => MANDRILL_USERNAME,
:password => MANDRILL_PASSWORD
}
end
import os
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
##
username = MANDRILL_USERNAME
password = MANDRILL_PASSWORD
s = smtplib.SMTP('smtp.mandrillapp.com', 587)
s.login(username, password)
##
Mandrill was developed by MailChimp, a company with more than 10 years of experience building a robust email marketing platform. MailChimp sends 15 billion emails every month for more than 8 million customers.