The SocketLabs Email Delivery Java library allows you to easily send any type of email message supported by our Injection API, from a simple message to a single recipient, to a complex bulk message sent to multiple recipients.
Send Bulk Email Without Having to Build & Maintain Your Own SMTP Email Servers
Basic Message
A basic message is an email message like you’d send from a personal email client such as Outlook. A basic message can have many recipients, including multiple, To Addresses, CC Addresses, and even BCC Addresses. You can also send a file attachment in a basic message.
SocketLabsClient client = new SocketLabsClient(000001, "YOUR-API-KEY"); //Your SocketLabs ServerId and Injection API key BasicMessage message = new BasicMessage(); message.setSubject("Sending A Test Message (Basic Send)"); message.setHtmlBody("<html><body><h1>Sending A Test Message</h1><p>This is the Html Body of my message.</p></body></html>"); message.setPlainTextBody("This is the Plain Text Body of my message."); message.setFrom(new EmailAddress("[email protected]")); //A basic message supports up to 50 recipients and supports several different ways to add recipients // Adding To Recipients message.getTo().add(new EmailAddress("[email protected]")); message.getTo().add(new EmailAddress("[email protected]", "Recipient #2")); // Adding CC Recipients message.addCcEmailAddress(new EmailAddress("[email protected]", "Recipient #3" )); // Adding Bcc Recipients message.addBccEmailAddress("[email protected]"); message.addBccEmailAddress("[email protected]", "Recipient #2"); SendResponse response = client.send(message);
Bulk Message
A bulk message usually contains a single recipient per message and is generally used to send the same content to many recipients, optionally customizing the message via the use of MergeData.
SocketLabsClient client = new SocketLabsClient(000001, "YOUR-API-KEY"); //Your SocketLabs ServerId and Injection API key BulkMessage message = new BulkMessage(); message.setSubject("Sending A Test Message (Bulk Send)"); message.setHtmlBody("<html><body><h1>Sending A Test Message</h1><p>This is the Html Body of my message.</p></body></html>"); message.setPlainTextBody("This is the Plain Text Body of my message."); message.setFrom(new EmailAddress("[email protected]")); message.setReplyTo(new EmailAddress("[email protected]")); message.getTo().add(new BulkRecipient("[email protected]")); message.getTo().add(new BulkRecipient("[email protected]", "Recipient #2")); message.getTo().add(new BulkRecipient("[email protected]")); message.getTo().add(new BulkRecipient("[email protected]", "Recipient #4")); SendResponse response = client.send(message);
How to Get Started
To run these samples you will need to obtain an API Key and ServerId number from your SocketLabs Control Panel.
I Don’t Have a SocketLabs Account
Create Your AccountI Have a SocketLabs Account
Get Your API Key and Server IDAbout Our Code Libraries
SocketLabs’ email API plays well with your favorite platforms and development frameworks, including .NET, PHP, Java, Node.js, Python, Go, and more! As a developer, our APIs for sending email give you all the tools you need to embed powerful email functionality into your applications.
SocketLabs
Developers
SocketLabs is built for developers, by developers.
Reach the inbox with industry-leading deliverability.
Integrate with your application in minutes.