Wiki source code of FancyMail Home
Version 2.1 by 5fbc055b7cc103006957e1ae on 2012-06-15 03.04:18
Hide last authors
| author | version | line-number | content |
|---|---|---|---|
| |
2.1 | 1 | (% style="" %) |
| 2 | Fancymail is a free alternative message sending service for e-mail and SMS in JAVA. It provides asynchronous sending, catches sending errors and is configurable for various connection types. | ||
| |
1.1 | 3 | |
| |
2.1 | 4 | (% style="" %) |
| 5 | Integrate Fancymail into Spring and let it deliver your e-mails over Gmail. | ||
| |
1.1 | 6 | |
| |
2.1 | 7 | (% style="" %) |
| 8 | The SVN Repository is located here: | ||
| |
1.1 | 9 | |
| |
2.1 | 10 | {{code language="none"}} |
| 11 | svn.clazzes.org/svn/fancymail | ||
| 12 | {{/code}} | ||
| |
1.1 | 13 | |
| |
2.1 | 14 | (% style="" %) |
| 15 | = {{id name="FancyMailHome-Quick-StartGuide"/}}Quick-Start Guide = | ||
| |
1.1 | 16 | |
| |
2.1 | 17 | You can download the .jar files for manual integration from our maven repository: |
| |
1.1 | 18 | |
| |
2.1 | 19 | {{code language="none"}} |
| 20 | http://maven.clazzes.org/org/clazzes/fancymail/ | ||
| 21 | {{/code}} | ||
| 22 | |||
| 23 | (% style="" %) | ||
| 24 | === {{id name="FancyMailHome-UsingMaven"/}}Using Maven === | ||
| 25 | |||
| 26 | (% style="" %) | ||
| 27 | We recommend to build your project with [[Maven>>url:http://maven.apache.org/download.html||shape="rect"]]. Include the repository location and the dependency in your pom.xml and you're done. | ||
| 28 | |||
| |
1.1 | 29 | |
| |
2.1 | 30 | |
| 31 | {{code language="none"}} | ||
| 32 | <repository> | ||
| 33 | <id>clazzes.org</id> | ||
| 34 | <url>http://mvn.clazzes.org/</url> | ||
| 35 | </repository> | ||
| 36 | |||
| 37 | ... | ||
| 38 | |||
| 39 | <dependency> | ||
| 40 | <groupId>org.clazzes</groupId> | ||
| 41 | <artifactId>fancymail</artifactId> | ||
| 42 | <version>yourversion</version> | ||
| 43 | </dependency> | ||
| 44 | {{/code}} |