www.mailersend.com Open in urlscan Pro
2606:4700:10::ac43:f95  Public Scan

Submitted URL: http://mail.designmatch.io/
Effective URL: https://www.mailersend.com/
Submission: On December 05 via api from US — Scanned from US

Form analysis 0 forms found in the DOM

Text Content

 * 
 * 

 * Features
   
   SEND AND RECEIVE EMAILS
   
    * Email API
    * SMTP relay
    * Dynamic email templates
    * Inbound email routing
    * Email verification
      NEW
   
   MANAGE YOUR ACCOUNT
   
    * User management
    * Multiple domains
    * Suppression lists
    * Analytics
   
   SEND SMS
   
   NEW
    * Transactional SMS
   
   See all features
   
 * Pricing
 * Blog
 * Resources
   
   GET INSPIRED
   
    * Get started
    * Knowledge Base
    * Blog
    * Free templates
    * Affiliate program
   
   GET CODING
   
    * API reference
    * Integrations
    * Status
    * Roadmap
   
   SDK LIBRARIES
   
    * NodeJS
    * Python
    * Java
    * Laravel
    * PHP
    * Go
    * Ruby
   
   
 * Log in
 * Sign up

 * Log in
 * Sign up
 * 


TRANSACTIONAL EMAIL AND SMS SERVICE

Developers come for the high deliverability and stay because our intuitive API
and built-in integrations make life easier.

Start sending API reference

Send 12,000 emails/month for free



TRANSACTIONAL EMAILS

Send with confidence knowing that your emails will get delivered

TRANSACTIONAL SMS

Send qualified SMS text messages to opt-in recipients

EMAIL VERIFICATION

Keep your domain reputation safe and increase deliverability


See all features


EVERYTHING YOU NEED TO SEND TRANSACTIONAL EMAILS

MailerSend is a comprehensive tool for your everyday business: send invoices,
delivery updates, and forgotten password links in seconds, without even thinking
about it.

SMTP RELAY

Plug & play with SMTP to instantly start sending emails from your app or
website.

MULTIPLE DOMAINS

Use multiple domains to manage different brands or products with one MailerSend
account.

EMAIL DELIVERY

Enjoy the flexibility of sending a few emails or scaling quickly to send a few
million.

INBOUND ROUTING

Receive and integrate incoming emails into your application.

IP ALLOWLIST

Restrict API and SMTP requests to a predefined set of IP addresses.

EFFORTLESS INTEGRATION

Choose among 7 SDKs and our email API to seamlessly integrate MailerSend into
your stack.


CREATED FOR ALL BUSINESSES

MailerSend integrates quickly into your tech stack, scales with your sendings,
and ensures that your emails get delivered.

Easiest To Do Business With
Fall 2022
High
Performer
Fall 2022
Best Est.
ROI
Fall 2022
Quality
Choice
2022

The free tier is very generous at 12k emails/month, perpetually. Which makes it
perfect for a small size e-commerce or growing online community. Since it has a
pay-as-you-go model, you can use it even for higher # of emails without having
to commit to higher monthly fees elsewhere (specially for volumes that will go
unused).

David S. Director, Installation

After switching to MailerSend, our e-mail deliverability has increased
dramatically across every application we manage. The user experience and support
are exceptional. MailerSend has figured out how to do transactional e-mail
right!

Dave Buonomo President & CTO, Blue Atlas Interactive

MailerSend gives us peace of mind. We never worry about our emails. All the work
happens in the background—always addressing our needs.

Raphaël Abadie CTO, CareSend

We switched to MailerSend while sending more than 20,000 emails a day.
Integration was a breeze with their great API and SDKs for your favorite
language. Since then, we've scaled up to send over 7 million emails without any
problems.

Nikola Milojević CTO, MailerLite

MailerSend fits perfectly into my workflows and it allows me to do exactly what
I need to do. It's the best transactional email tool for people who don’t code.

Connor Finlayson Founder, Unicorn Factory


INTEGRATE QUICKLY WITH OUR API DOCUMENTATION

MailerSend fits right into your stack with libraries for your favorite
programming language, while detailed API documentation helps you send emails in
minutes.

Read our API docs
 * 
 * 
 * 
 * 
 * 
 * 

curl -X POST \
https://api.mailersend.com/v1/email \
    -H 'Content-Type: application/json' \
    -H 'X-Requested-With: XMLHttpRequest' \
    -H 'Authorization: Bearer {place your token here without brackets}' \
    -d '{
        "from": {
            "email": "your@email.com"
        },
            "to": [
        {
            "email": "your@client.com"
        }
        ],
        "subject": "Hello from MailerSend!",
        "text": "Greetings from the team, you got this message through MailerSend.",
        "html": "Greetings from the team, you got this message through MailerSend."
    }'

use MailerSend\MailerSend;
use MailerSend\Helpers\Builder\Recipient;
use MailerSend\Helpers\Builder\EmailParams;

$mailersend = new MailerSend(['api_key' => 'key']);

$recipients = [
new Recipient('your@client.com', 'Your Client'),
];

$emailParams = (new EmailParams())
->setFrom('your@email.com')
->setFromName('Your Name')
->setRecipients($recipients)
->setSubject('Subject')
->setHtml('Greetings from the team, you got this message through MailerSend.')
->setText('Greetings from the team, you got this message through MailerSend.');

$mailersend->email->send($emailParams);

const Recipient = require("mailersend").Recipient;
const EmailParams = require("mailersend").EmailParams;
const MailerSend = require("mailersend");

const mailersend = new MailerSend({
    api_key: "key",
});

const recipients = [new Recipient("your@client.com", "Your Client")];

const emailParams = new EmailParams()
    .setFrom("your@email.com")
    .setFromName("Your Name")
    .setRecipients(recipients)
    .setSubject("Subject")
    .setHtml("Greetings from the team, you got this message through MailerSend.")
    .setText("Greetings from the team, you got this message through MailerSend.");

mailersend.send(emailParams);

package main

import (
    "context"
    "fmt"
    "time"

    "github.com/mailersend/mailersend-go"
)

var APIKey string = "Api Key Here"

func main() {
    ms := mailersend.NewMailersend(APIKey)

    ctx := context.Background()
    ctx, cancel := context.WithTimeout(ctx, 5*time.Second)
    defer cancel()

    subject := "Subject"
    text := "Greetings from the team, you got this message through MailerSend."
    html := "Greetings from the team, you got this message through MailerSend."

    from := mailersend.From{
        Name:  "Your Name",
        Email: "your@email.com",
    }

    recipients := []mailersend.Recipient{
        {
            Name:  "Your Client",
            Email: "your@client.com",
        },
    }

    variables := []mailersend.Variables{
        {
            Email: "your@client.com",
            Substitutions: []mailersend.Substitution{
                {
                    Var:   "foo",
                    Value: "bar",
                },
            },
        },
    }

    tags := []string{"foo", "bar"}

    message := ms.NewMessage()

    message.SetFrom(from)
    message.SetRecipients(recipients)
    message.SetSubject(subject)
    message.SetHTML(html)
    message.SetText(text)
    message.SetSubstitutions(variables)

    message.SetTags(tags)

    res, _ := ms.Send(ctx, message)

    fmt.Printf(res.Header.Get("X-Message-Id"))

}

from mailersend import emails

mailer = emails.NewEmail()

mail_body = {}

mail_from = {
    "name": "Your Name",
    "email": "your@domain.com",
}

recipients = [
    {
        "name": "Your Client",
        "email": "your@client.com",
    }
]

mailer.set_mail_from(mail_from, mail_body)
mailer.set_mail_to(recipients, mail_body)
mailer.set_subject("Hello!", mail_body)
mailer.set_html_content("Greetings from the team, you got this message through MailerSend.", mail_body)
mailer.set_plaintext_content("Greetings from the team, you got this message through MailerSend.", mail_body)

mailer.send(mail_body)

require "mailersend-ruby"

# Intialize the email class
ms_email = Mailersend::Email.new

# Add parameters
ms_email.add_recipients("email" => "your@client.com", "name" => "Your Client")
ms_email.add_recipients("email" => "your@client.com", "name" => "Your Client")
ms_email.add_from("email" => "your@domain.com", "name" => "Your Name")
ms_email.add_subject("Hello!")
ms_email.add_text("Greetings from the team, you got this message through MailerSend.")
ms_email.add_html("Greetings from the team, you got this message through MailerSend.")

# Send the email
ms_email.send


INTEGRATIONS

Easily connect other web apps with MailerSend so they seamlessly work together
to share information, automate workflows and enhance your customer experience.

Zapier
WooCommerce
WordPress
Integrately
Make
Pabbly Connect
Courier
All integrations


PRICING

Three simple plans, no hidden costs. Start with 12,000 emails/month for free and
upgrade to get better pricing when you need more volume or features.

How many emails do you plan to send?
12K
USD EUR GBP
Pricing in Euros and British Pounds is for informational purposes only. All
billing invoices will be charged in US dollars.

STARTER

Free
12,000 emails
$1.00 €0.95 £0.82 /1000 emails
Sign up FREE

PREMIUM
MOST POPULAR

$ 25 € 23 £ 20 / month
50,000 emails
$0.90 €0.85 £0.74 /1000 emails
100 SMS
$1.40 €1.33 £1.15 /100 SMS
100 emails verifications credits
Sign up FREE
Upgrade anytime

ENTERPRISE

Let’s talk!
For large organisations with special requirements.
Get a quote


SEND TRANSACTIONAL EMAILS IN 5 MINUTES



Add your domain
Verify DNS records
Start sending



Quick start

PRODUCT

 * Transactional emails
 * Transactional SMS
 * Email API
 * Email templates
 * Email delivery
 * SMTP relay
 * Inbound email routing
 * Roadmap

RESOURCES

 * API reference
 * Status
 * Integrations
 * Knowledge base
 * Brand assets
 * Free templates
 * Blog

COMPANY

 * About us
 * Write for us
 * Pricing
 * Jobs
 * Contact us
 * Affiliate program
 * Compare

LET’S KEEP IN TOUCH

Sign up for our weekly newsletter and MailerSend updates.

Sorry, but you look like a robot.

THANK YOU!

You have successfully joined our subscriber list.

 * 
 * 
 * 
 * 

© 2020 - 2022 MailerSend.
Terms of Service Report abuse Cookies Settings
GDPR Compliant Your data is safe with us

Stop War! Help Ukraine! See what you can do


PRIVACY PREFERENCE CENTER

When you visit any website, it may store or retrieve information on your
browser, mostly in the form of cookies. This information might be about you,
your preferences or your device and is mostly used to make the site work as you
expect it to. The information does not usually directly identify you, but it can
give you a more personalized web experience. Because we respect your right to
privacy, you can choose not to allow some types of cookies. Click on the
different category headings to find out more and change our default settings.
However, blocking some types of cookies may impact your experience of the site
and the services we are able to offer.
More information
Allow All


MANAGE CONSENT PREFERENCES

STRICTLY NECESSARY COOKIES

Always Active

These cookies are necessary for the website to function and cannot be switched
off in our systems. They are usually only set in response to actions made by you
which amount to a request for services, such as setting your privacy
preferences, logging in or filling in forms. You can set your browser to block
or alert you about these cookies, but some parts of the site will not then work.
These cookies do not store any personally identifiable information.

PERFORMANCE COOKIES

Performance Cookies

These cookies allow us to count visits and traffic sources so we can measure and
improve the performance of our site. They help us to know which pages are the
most and least popular and see how visitors move around the site. All
information these cookies collect is aggregated and therefore anonymous. If you
do not allow these cookies we will not know when you have visited our site, and
will not be able to monitor its performance.

FUNCTIONAL COOKIES

Functional Cookies

These cookies enable the website to provide enhanced functionality and
personalisation. They may be set by us or by third party providers whose
services we have added to our pages. If you do not allow these cookies then some
or all of these services may not function properly.

TARGETING COOKIES

Targeting Cookies

These cookies may be set through our site by our advertising partners. They may
be used by those companies to build a profile of your interests and show you
relevant adverts on other sites. They do not store directly personal
information, but are based on uniquely identifying your browser and internet
device. If you do not allow these cookies, you will experience less targeted
advertising.


BACK BUTTON BACK



Vendor Search Search Icon
Filter Icon

Clear
checkbox label label
Apply Cancel
Consent Leg.Interest
checkbox label label
checkbox label label
checkbox label label

Confirm My Choices


By clicking “Accept All Cookies”, you agree to the storing of cookies on your
device to enhance site navigation, analyze site usage, and assist in our
marketing efforts. View our Cookie Policy.

Cookies Settings Accept All Cookies