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.
Payment faliure emails is an important component of any email communication strategy. In order to ensure delivery of Payment faliure emails to your customers, reply on a trusted cloud-based email provider like Mailazy as a partner in your growth journey.
You need to complete these given prerequisites, you can skip the step if you have already completed.
Sign up for a Mailazy account.
Complete Domain Authentication.
Generate the Mailazy Access Key
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("sender@example.com", "sender"));
msg.addRecipient(Message.RecipientType.TO, new InternetAddress("recipient@example.com"));
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);
}
}
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.