Samply Common Mailing

This library offers utilities for building and sending HTML emails

Лицензия

Лицензия

Группа

Группа

de.samply
Идентификатор

Идентификатор

common-mailing
Последняя версия

Последняя версия

3.0.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

Samply Common Mailing
This library offers utilities for building and sending HTML emails
Ссылка на сайт

Ссылка на сайт

https://github.com/samply/common-mailing
Организация-разработчик

Организация-разработчик

Samply Community
Система контроля версий

Система контроля версий

https://github.com/samply/common-mailing

Скачать common-mailing

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/de.samply/common-mailing/ -->
<dependency>
    <groupId>de.samply</groupId>
    <artifactId>common-mailing</artifactId>
    <version>3.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/de.samply/common-mailing/
implementation 'de.samply:common-mailing:3.0.0'
// https://jarcasting.com/artifacts/de.samply/common-mailing/
implementation ("de.samply:common-mailing:3.0.0")
'de.samply:common-mailing:jar:3.0.0'
<dependency org="de.samply" name="common-mailing" rev="3.0.0">
  <artifact name="common-mailing" type="jar" />
</dependency>
@Grapes(
@Grab(group='de.samply', module='common-mailing', version='3.0.0')
)
libraryDependencies += "de.samply" % "common-mailing" % "3.0.0"
[de.samply/common-mailing "3.0.0"]

Зависимости

compile (3)

Идентификатор библиотеки Тип Версия
de.samply : common-config jar 5.1.0
javax.mail : mail jar 1.4.7
com.google.template : soy jar 2015-04-10

Модули Проекта

Данный проект не имеет модулей.

UNMERGED BRANCH -CHANGES FROM OTHER SAMPLY TEAMS MISSING

Samply Common Mailing

This library offers utilities for building and sending HTML emails.

It provides a master template file that is used for all emails. The content and footer for emails can be set by the projects that use this library. The template engine is Google Closure Templates.

The configuration for email sending (connection to mail server etc.) can be specified in an XML file, which is parsed with the Samply Common Config library.

Usage

The configuration file for mail sending is named mailSending.xml.

You can either create a MailSending configuration object by reading the XML file or set its values in Java Code.

MailSending mailSending = MailSender.loadMailSendingConfig("myproject");

In the documentation for the Samply Common Config library you can see where the configuration file can be placed. The configuration is needed to create a MailSender instance:

MailSender mailSender = new MailSender(mailSending);

An email builder combines different template files and generates the text:

String templateFolder = mailSending.getTemplateFolder();
EmailBuilder builder = new EmailBuilder(templateFolder);
builder.addTemplateFile("Footer.soy", "Footer");
builder.addTemplateFile("TestMailContent.soy", "TestMailContent");

You can write and add template files that provide implementations for different parts of the email. This is done with Delegate Templates. There are three delegate templates, namely maincontent, footer and greeting. Setting a maincontent is mandatory, the other templates are optional. The greeting part has a default implementation, which should usually suffice.

For a complete working example please take a look at the maven test folder (src/test/).

The template files must all be located in one folder whose path must be specified in the configuration.

An OutgoingEmail object gets all information needed for writing the email:

OutgoingEmail email = new OutgoingEmail();
email.addAddressee("werner.mueller@example.com");
email.setSubject("Subject: Test");
email.putParameter("name", "Müller");
email.putParameter("title", "Prof. Dr.");
email.setLocale("de");
email.putParameter("testPar", "http://example.org");
email.setBuilder(builder);

The parameters "name" and "title" are used in the main template to generate a standard personalized greeting, depending on the locale. If no name is provided, you get an anonymous greeting. All other parameters can be set to be used by the templates.

Now, after having set the parameters and specified the templates, the mail can be sent:

mailSender.send(email);

Build

Use maven to build the jar:

mvn clean package

Use it as a dependency:

<dependency>
    <groupId>de.samply</groupId>
    <artifactId>common-mailing</artifactId>
    <version>1.0.0-SNAPSHOT</version>
</dependency>

License

Copyright 2020 The Samply Development Community

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

de.samply

Samply

Версии библиотеки

Версия
3.0.0