Digital Ocean SMTP Blocked

digital content ai ocean smtp
A
Abhijeet Chattarjee

Email Design Specialist & Template Developer

 
June 30, 2025 2 min read

SMTP port 25 which helps you to send emails, is blocked on all Digital Ocean Droplets for new accounts to prevent spam and other abuses of Digital Ocean's platform.

Dedicated cloud email deliverability platforms are better at handling deliverability factors like IP reputation and sender reputation.

Mailazy is a cloud email delivery platform that helps you send your transactional emails without worrying about the technical challenges associated with SMTP.

Getting started with Mailazy

Account Creation:
  1. Navigate to the Sender Authentication of your Mailazy dashboard.

  2. Add the sender domain that you wish to send emails from, for example, if you would like to send emails from example.com then enter example.com and proceed with the verification. You may skip this step if you already have a sender domain configured and authenticated.

  3. Navigate to the Access Keys, Click on Create Access Key to create an API Key and secret so you can authenticate your send email requests.

  4. Start integration with the application, Navigate to Integration Guide https://app.mailazy.com/guide/integrate and select your preferred way to integrate either via email API or SMTP.

You can also check out client libraries and detailed instructions on integration on our docs https://mailazy.com/docs.

  1. Check the status and other details of your email message in the Logs tab of your Mailazy dashboard.

Send Test Email:

SMTP:

Set the following SMTP configuration in your application.

Server/Host: smtp.mailazy.com
Port: 587
Username: Access Key generated from the dashboard.
Password: Access Secret generated from the dashboard.

Email API:

Send an email by making an HTTP POST request to the Mailazy Email API at https://api.mailazy.com/v1/mail/send

curl --location --request POST 'https://api.mailazy.com/v1/mail/send' \
--header 'x-api-key: {your API Key without bracket}' \
--header 'x-api-secret: {your API Secret without bracket}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "To": [
        "[email protected]"
    ],
    "From": "any_alias@{your sender domain without bracket}",
    "Subject": "Hello World!",
    "Content": [
        {
            "Type": "text/plain",
            "Value": "hello world"
        },
        {
            "Type": "text/html",
            "Value": "<b>hello world<b/>"
        }
    ]
}'

Please make sure that you insert your API Key and Secret and to value with your own. The from address should be the same verified domain that you have verified on your Mailazy dashboard.

A
Abhijeet Chattarjee

Email Design Specialist & Template Developer

 

A seasoned Product Marketing expert with extensive experience in product management and marketing strategies. Skilled in driving go-to-market plans, customer engagement, and cross-functional collaboration, they excel at aligning product development with market needs to deliver growth. Passionate about creating compelling product narratives, they combine data-driven insights with innovative solutions to boost brand visibility and customer satisfaction.

Related Articles

seo

6 Authentic Ways to Trace an IP Address from Email

Learn effective methods to trace IP addresses from emails for security verification, spam identification, and enhanced email management with practical step-by-step guidance.

By Abhijeet Chattarjee June 30, 2025 6 min read
Read full article
marketing

Demystifying Email Delivery: A Deep Dive into Email APIs, SMTP Servers, and Email Delivery Services

This blog post dives into the world of email APIs, SMTP servers, and email delivery services. Learn how they work together to get your emails into inboxes, not spam folders. Boost your email marketing results with this essential guide!

By Abhijeet Chattarjee June 30, 2025 7 min read
Read full article
content

21 SMTP Response Codes

The SMTP response code list can be used to help quickly determine the reason for email bounces or why you received an SMTP error when sending an email.

By Rahul Yadav June 30, 2025 6 min read
Read full article
digital

6 Tips for Defending Against Business Email Cybercriminal Attacks

Learn how to defend your firm from business email cybercriminal attacks, including how to spot and block them. Discover important tips with Mailazy now!

By Abhijeet Chattarjee June 30, 2025 6 min read
Read full article