Wiki source code of FancyMail Home

Version 2.1 by 5fbc055b7cc103006957e1ae on 2012-06-15 03.04:18

Hide last authors
5fbc055b7cc103006957e1ae 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.
christoph_lechleitner@iteg_at 1.1 3
5fbc055b7cc103006957e1ae 2.1 4 (% style="" %)
5 Integrate Fancymail into Spring and let it deliver your e-mails over Gmail.
christoph_lechleitner@iteg_at 1.1 6
5fbc055b7cc103006957e1ae 2.1 7 (% style="" %)
8 The SVN Repository is located here:
christoph_lechleitner@iteg_at 1.1 9
5fbc055b7cc103006957e1ae 2.1 10 {{code language="none"}}
11 svn.clazzes.org/svn/fancymail
12 {{/code}}
christoph_lechleitner@iteg_at 1.1 13
5fbc055b7cc103006957e1ae 2.1 14 (% style="" %)
15 = {{id name="FancyMailHome-Quick-StartGuide"/}}Quick-Start Guide =
christoph_lechleitner@iteg_at 1.1 16
5fbc055b7cc103006957e1ae 2.1 17 You can download the .jar files for manual integration from our maven repository:
christoph_lechleitner@iteg_at 1.1 18
5fbc055b7cc103006957e1ae 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
christoph_lechleitner@iteg_at 1.1 29
5fbc055b7cc103006957e1ae 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}}