Quickstart Guide

Learn how to start sending email with Amply in just a few minutes.

You can begin using Amply as soon as you register your account, and requires just a few steps:

  1. Verify yourself as a sender
  2. Create an IP pool
  3. Provision an access token
  4. Integrate via SMTP Relay or API
  5. Update rDNS (Optional)

Follow the guide below to start sending email with Amply! If you haven't created an account yet, you can do so here.


1. โœ… Verify yourself as a sender

For the security of our customers, we require the sender (whoever is in the From header of your email) to be verified. You can verify either an entire domain, yourdomain.com or an individual email address, sender@yourโ€‹domain.com.

This guide goes over verifying an entire domain, but you can check out the Sender Verification article if you'd like more info or if you'd rather verify an individual email address.

Verify your domain

Navigate to the "Verified Domains" page by clicking on the "Mail Settings" tab from your dashboard. Click on the "+" sign to add a new Verified Domain.

Enter the domain you'd like to verify in the "Domain Name" input. Once you submit the form, the DNS records you need to provision will be listed next to it:


To maximize deliverability, you should enforce a DMARC policy (a policy of either quarantine or reject). However, only do this if you are absolutely sure that that it is safe. You can read more about the implications of doing that here.

Green checkmarks will be displayed once you've added the records.

โณ

DNS changes may take up to 48 hours to take effect (depending on the TTL of the record).


2. ๐ŸŒ Create an IP Pool

An IP pool is a collection of IP addresses. We automatically create a pool called Global when you register your account. The Global pool is every IP that is allocated to your account.

Creating separate pools means you can associate different IPs with each type of email that you send.

For mission-critical emails, you can have a pool of IPs whose reputation needs to remain immaculate to maintain the highest level of deliverability.

Create the pool

Navigate to the "IP Pools" page by clicking on the "Mail Settings" tab from your dashboard. Click on the "+ Add New" button to add a new IP pool.

Take note of the UUID of the pool you've created; we'll use this in Step 4.


3. ๐Ÿ”‘ Provision an Access Token

Access tokens are an alternative to passwords for authentication to Amply when using the API or the SMTP relay.

Create the token

Navigate to the "Access Tokens" page by clicking on the "Mail Settings" tab from your dashboard. You can use the existing token, or click on the "+ Add New" button to add a new access token.

Take note of the token's secret value; we'll use this in Step 4.


4. ๐Ÿ”— Integrate via SMTP Relay or API

There are two ways to send email with Amply: via our SMTP Relay or REST API. Both are highly effective methods of delivering email so choose whatever is best for your use case.

Here are a few things to keep in mind:

SMTP RelayREST API
Easy to set up and integrateEasy to secure (all connections sent over HTTPS)
Platform independentExpanded functionality but more complex (requires technical know-how)
Established email standardEasily accessible if your ISP blocks traffic on mail ports

In this guide, we'll send an email using the API via a simple cURL request. You can take a deeper look at setting up the SMTP relay or API here:

Send an email

The following cURL request makes a simple HTTP call to our API servers:

curl https://sendamply.com/api/v1/email \
    -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
    -H 'Content-Type: application/json' \
    --data-binary @- << EOF
    {
      "subject": "Hello, from Amply!",
      "from": {
        "email": "[email protected]",
        "name": "John Smith"
      },
      "content": [
        {
          "type": "text/plain",
          "value": "Hi there!"
        }
      ],
      "personalizations": [
        {
          "to": [
            {
              "email": "[email protected]",
              "name": "Your Name"
            }
          ]
        }
      ],
      "ip_or_pool_uuid": "YOUR_IP_POOL_UUID"
    }
EOF

Replace the sender (from address donotreply@verifiโ€‹eddomain.com) with a sender from a domain you verified in Step 1. In addition, replace the YOUR_IP_POOL_UUID with the IP pool UUID you created in Step 2. Finally, replace YOUR_ACCESS_TOKEN with the access token you created in Step 3.

If you don't specify an IP pool, Amply will send from your Global pool.

That's it! You're ready to start sending email.


5. โช Update rDNS (Optional)

Reverse DNS resolution (rDNS) is the querying technique of DNS to determine the domain name associated with an IP address. Email clients look favorably at IP addresses whose rDNS domain name matches the return-path domain.

Since all IP addresses that Amply provisions are dedicated, you are free to update the rDNS record for each of your IPs. You should only do this if you are sending out of one domain. For example, you would NOT want to provision a new rDNS record if you are sending from [email protected] and [email protected].

If you choose to update your rDNS, navigate to the IP Address you'd like to update by clicking on "Mail Settings" and then "IP Addresses". Select the IP from the list.

In the above example, we set the rDNS domain to outbound123.smtp.sendamply.net. You don't need to use outbound123, but you do need to ensure the value is unique, and that you've provisioned an A record with the value of the IP address.


Whatโ€™s Next