For Developers By Developers

You can integrate Mailazy in minutes with your platform. Build and monitor your email solution on a trusted foundation with technical and strategic support when you need it the most.

Trusted by 145+ customers and delivering over 18 Million emails/month.

Configure OTP emails with SMTP for Java

OTP emails is an important component of any email communication strategy. In order to ensure delivery of OTP emails to your customers, reply on a trusted cloud-based email provider like Mailazy as a partner in your growth journey.

Prerequisites

You need to complete these given prerequisites, you can skip the step if you have already completed.

  1. Sign up for a Mailazy account.

  2. Complete Domain Authentication.

  3. Generate the Mailazy Access Key

Integrate Mailazy with Java

Start Sending mail using the code provided below:

import java.util.*;
import java.lang.*;
import java.io.*;
import javax.mail.*;
import javax.mail.internet.*;

class Main {
    public static void main(String[] args) throws MessagingException, UnsupportedEncodingException {
        // Get system properties
        Properties properties = System.getProperties();

        // Setup mail server
        properties.setProperty("mail.smtp.host", "smtp.mailazy.com");
        properties.setProperty("mail.smtp.port", "587"); //TLS Port
        properties.setProperty("mail.smtp.auth", "true"); //enable authentication
        properties.setProperty("mail.smtp.starttls.enable", "true");

        //create Authenticator object to pass in Session.getInstance argument
        Authenticator auth = new Authenticator() {
            //override the getPasswordAuthentication method
            protected PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication("ACCESS_KEY", "ACCESS_SECRET");
            }
        };
        Session session = Session.getInstance(properties, auth);

        final Message msg = new MimeMessage(session);
        msg.setFrom(new InternetAddress("[email protected]", "sender"));
        msg.addRecipient(Message.RecipientType.TO, new InternetAddress("[email protected]"));
        msg.setSubject("Hello world!");
        // Unformatted text version
        final MimeBodyPart textPart = new MimeBodyPart();
        textPart.setContent("Hello Bob!", "text/plain; charset=utf-8");
        // HTML version
        final MimeBodyPart htmlPart = new MimeBodyPart();
        htmlPart.setContent("Hello Bob!", "text/html; charset=utf-8");
        // Create the Multipart. Add BodyParts to it.
        final Multipart mp = new MimeMultipart("alternative");

        mp.addBodyPart(textPart);
        mp.addBodyPart(htmlPart);

        // Set Multipart as the message's content
        msg.setContent(mp);

        // Send
        Transport.send(msg);
    }
}

Send transactional emails with Mailazy

Mailazy email delivery platform is powered by AI and uses the global infrastructure so that you can scale effortlessly. Mailazy is the trusted transactional email provider for hundreds of businesses and we are growing every day. We are known for being the most reliable and trusted senders on the internet.

Ready to get started?

Get started — it's free