Wiki source code of FancyMail Home

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

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