Download this version to begin developing today. This version is limited to 100 emails per execution. See our pricing page for details on purchasing a full version.
Instructions and examples can be found in the Getting Started section of the User's Guide.
Download simplemailprocessor.jar
The following dependencies need to be included in the class path:
Slf4j is used for logging. You will need to include slf4j-api-<version>.jar and one (and only one) of the following jars in your classpath:
- slf4j-nop-<version>.jar
- slf4j-simple-<version>.jar
- slf4j-log4j12-<version>.jar
- slf4j-jdk14-<version>.jar
- slf4j-jcl-<version>.jar
The Development version is also avaialble from the Golden Innovations Maven Reository. Add the following to the pom.xml file:
<repositories>
<repository>
<id>goldeninnovations.com</id>
<url>http://maven.goldeninnovations.com/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.goldeninnovations</groupId>
<artifactId>simplemailprocessor</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-nop</artifactId>
<version>1.5.8</version>
</dependency>
</dependencies>
The slf4j-nop dependency can be replaced with another slf4j implementation.
