Wiki source code of FancyMail Home

Version 6.1 by christoph_lechleitner@iteg_at on 2025-03-18 04.29:42

Hide last authors
5fbc055b7cc103006957e1ae 2.1 1 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 2
5fbc055b7cc103006957e1ae 2.1 3 Integrate Fancymail into Spring and let it deliver your e-mails over Gmail.
christoph_lechleitner@iteg_at 1.1 4
5fbc055b7cc103006957e1ae 2.1 5 The SVN Repository is located here:
christoph_lechleitner@iteg_at 1.1 6
5fbc055b7cc103006957e1ae 2.1 7 {{code language="none"}}
8 svn.clazzes.org/svn/fancymail
9 {{/code}}
christoph_lechleitner@iteg_at 1.1 10
5fbc055b7cc103006957e1ae 2.1 11 = {{id name="FancyMailHome-Quick-StartGuide"/}}Quick-Start Guide =
christoph_lechleitner@iteg_at 1.1 12
5fbc055b7cc103006957e1ae 2.1 13 You can download the .jar files for manual integration from our maven repository:
christoph_lechleitner@iteg_at 1.1 14
5fbc055b7cc103006957e1ae 2.1 15 {{code language="none"}}
16 http://maven.clazzes.org/org/clazzes/fancymail/
17 {{/code}}
18
19 === {{id name="FancyMailHome-UsingMaven"/}}Using Maven ===
20
21 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.
22
christoph_lechleitner@iteg_at 6.1 23 \\
5fbc055b7cc103006957e1ae 2.1 24
25 {{code language="none"}}
26 <repository>
27 <id>clazzes.org</id>
28 <url>http://mvn.clazzes.org/</url>
29 </repository>
30  
31 ...
32  
33 <dependency>
34 <groupId>org.clazzes</groupId>
35 <artifactId>fancymail</artifactId>
36 <version>yourversion</version>
37 </dependency>
38 {{/code}}
christoph_lechleitner@iteg_at 3.1 39
40 = {{id name="FancyMailHome-Sourcecodeandissuetracker"/}}Source code and issue tracker =
41
christoph_lechleitner@iteg_at 6.1 42 Git:
christoph_lechleitner@iteg_at 3.1 43
christoph_lechleitner@iteg_at 6.1 44 * (% class="code" %)git:~/~/git.clazzes.org/java-libs/util/fancymail-main.git
45
46 Obsolete Subversion:
47
christoph_lechleitner@iteg_at 4.1 48 (% style="list-style-type: square;" %)
49 * [[http:~~/~~/svn.clazzes.org/svn/fancymail>>url:http://svn.clazzes.org/svn/fancymail||style="font-size: 10.0pt;line-height: 13.0pt;" shape="rect"]] (FancyMail core lib)
50 * [[http:~~/~~/svn.clazzes.org/svn/fancymail/trunk/gwt-fancymail-admin/>>url:http://svn.clazzes.org/svn/fancymail/trunk/gwt-fancymail-admin/||shape="rect"]] (GWT Fancymail Admin)
51
52 Jira:
53
54 (% style="list-style-type: square;" %)
55 * [[FANCYMAIL>>url:https://jira.clazzes.org/browse/FANCYMAIL||style="font-size: 10.0pt;line-height: 13.0pt;" shape="rect"]] (FancyMail core lib)
56 * [[GWTFMADM>>url:https://jira.clazzes.org/browse/GWTFMADM||shape="rect"]] (GWT FancyMail Admin)
57
christoph_lechleitner@iteg_at 6.1 58 \\