sendinblue

Sendinblue API Wrapper for Java

License

License

GroupId

GroupId

com.sendinblue
ArtifactId

ArtifactId

sendinblue
Last Version

Last Version

2.0
Release Date

Release Date

Type

Type

jar
Description

Description

sendinblue
Sendinblue API Wrapper for Java
Project URL

Project URL

https://github.com/mailin-api/sendinblue-java-mvn
Source Code Management

Source Code Management

https://github.com/mailin-api/sendinblue-java-mvn/

Download sendinblue

How to add to project

<!-- https://jarcasting.com/artifacts/com.sendinblue/sendinblue/ -->
<dependency>
    <groupId>com.sendinblue</groupId>
    <artifactId>sendinblue</artifactId>
    <version>2.0</version>
</dependency>
// https://jarcasting.com/artifacts/com.sendinblue/sendinblue/
implementation 'com.sendinblue:sendinblue:2.0'
// https://jarcasting.com/artifacts/com.sendinblue/sendinblue/
implementation ("com.sendinblue:sendinblue:2.0")
'com.sendinblue:sendinblue:jar:2.0'
<dependency org="com.sendinblue" name="sendinblue" rev="2.0">
  <artifact name="sendinblue" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.sendinblue', module='sendinblue', version='2.0')
)
libraryDependencies += "com.sendinblue" % "sendinblue" % "2.0"
[com.sendinblue/sendinblue "2.0"]

Dependencies

compile (1)

Group / Artifact Type Version
com.google.code.gson : gson jar 2.7

test (1)

Group / Artifact Type Version
junit : junit jar 3.8.1

Project Modules

There are no modules declared in this project.

SendinBlue Mvn Central Repository

Note: The latest API V3.0 ( LTS ) is now maintained at https://github.com/sendinblue/ and the Documentation is available here https://developers.sendinblue.com

This is SendinBlue provided API V2 Mvn central repository. It implements the various exposed APIs that you can read more about on https://apidocs.sendinblue.com.

SendinBlue API's use HTTP Authentication through an api key. You can create your api key from API Console, after you sign up for an account with SendinBlue. You must use latest version 2.0, access key, for accessing APIs.

Install Package

The following recommended installation steps. If you are unfamiliar with maven central repository, see the About Maven Central Repository.

Our maven package is available here

Add the following to your pom.xml file:

{
  ...
  <dependencies>
      <dependency>
         <groupId>com.sendinblue</groupId>
         <artifactId>sendinblue</artifactId>
         <version>2.0</version>
      </dependency>
   <dependencies>
   ...
}

Alternative installation

To download the jar pacakage click here

Usage

Assuming that you have download jar file from above mention URL. You will get a jar file named sendinblue-2.0.

  • Create a file MyClass.java using below code :-
import com.sendinblue.Sendinblue;
import java.util.*;

class MyClass
{
    public static void main(String[] args)
    {
    	Sendinblue http = new Sendinblue("https://api.sendinblue.com/v2.0","your_api_key");
	    String accountDetail = http.get_account();
	    System.out.println(accountDetail);
	    System.out.println(" ");

	    String smtpDetail = http.get_smtp_details();
	    System.out.println(smtpDetail);
	    System.out.println(" ");
    }
}
  • Compile and execute above java file with Sendinblue API package
javac -cp '.:sendinblue-2.0.jar' MyClass.java
java -cp '.:sendinblue-2.0.jar' MyClass

Support and Feedback

Be sure to visit the SendinBlue official documentation website for additional information about our API.

If you find a bug, please submit the issue in Github directly.

As always, if you need additional assistance, drop us a note here.

com.sendinblue

SendinBlue

Versions

Version
2.0