]> git.mxchange.org Git - jmailer-ee.git/blob - src/org/mxchange/jmailee/model/delivery/BaseMailerBean.java
Continued:
[jmailer-ee.git] / src / org / mxchange / jmailee / model / delivery / BaseMailerBean.java
1 /*
2  * Copyright (C) 2016 - 2022 Free Software Foundation
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.jmailee.model.delivery;
18
19 import java.io.StringWriter;
20 import java.text.MessageFormat;
21 import java.util.Date;
22 import java.util.Properties;
23 import javax.mail.Address;
24 import javax.mail.Message;
25 import javax.mail.MessagingException;
26 import javax.mail.Session;
27 import javax.mail.Transport;
28 import javax.mail.internet.InternetAddress;
29 import javax.mail.internet.MimeMessage;
30 import org.apache.velocity.Template;
31 import org.apache.velocity.app.VelocityEngine;
32 import org.apache.velocity.context.Context;
33 import org.apache.velocity.runtime.RuntimeConstants;
34 import org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader;
35 import org.mxchange.jcoreee.bean.ejb.BaseEnterpriseBean;
36 import org.mxchange.jmailee.model.delivery.wrapper.WrapableEmailDelivery;
37
38 /**
39  * A general email bean for sending out mails from templates
40  * <p>
41  * @author Roland Häder<roland@mxchange.org>
42  */
43 public abstract class BaseMailerBean extends BaseEnterpriseBean implements DeliverableEmailRemote {
44
45         /**
46          * Serial number
47          */
48         private static final long serialVersionUID = 14_598_912_753_106L;
49
50         /**
51          * Properties for this mailer
52          * <p>
53          * Valid are: - mailer.errorsto = Email address for "Errors-To" header -
54          * mailer.bouncesto = Email address for "Bounces-To" header (optional, if
55          * not set, errorsto must be set) - mailer.xloop = Email address for
56          * "X-Loop" header (optional, if not set, errorsto must be set)
57          */
58         private Properties properties;
59
60         /**
61          * Template engine
62          */
63         private final VelocityEngine templateEngine;
64
65         /**
66          * Default constructor
67          */
68         protected BaseMailerBean () {
69                 // Call super constructor
70                 super();
71
72                 // Init template engine
73                 this.templateEngine = new VelocityEngine();
74                 this.templateEngine.setProperty(RuntimeConstants.RESOURCE_LOADER, "classpath"); //NOI18N
75                 this.templateEngine.setProperty("classpath.resource.loader.class", ClasspathResourceLoader.class.getName()); //NOI18N
76                 this.templateEngine.init();
77         }
78
79         /**
80          * Sends an email to given email address with subject line.
81          * <p>
82          * @param emailAddress Email address for recipient
83          * @param subjectLine  Subject line
84          * @param writer       Body part
85          * @param mailSession  Corresponding mail session to use
86          * <p>
87          * @throws MessagingException If something happened on message delivery
88          */
89         private void deliverMail (final WrapableEmailDelivery emailWrapper, final StringWriter writer, final Session mailSession) throws MessagingException {
90                 // Trace message
91                 this.getLoggerBeanLocal().logTrace(MessageFormat.format("deliverMail: emailWrapper={0},body={1},mailSession={2} - CALLED!", emailWrapper, writer, mailSession)); //NOI18N
92
93                 // Parse from address
94                 final Address senderAddress = new InternetAddress(this.properties.getProperty("mailer.from"));
95
96                 // Get MIME message instance
97                 final MimeMessage message = new MimeMessage(mailSession);
98
99                 // Set subject, recipients and body
100                 message.setFrom(senderAddress);
101                 message.setSubject(emailWrapper.getSubjectLine());
102                 message.setRecipient(Message.RecipientType.TO, emailWrapper.getRecipientAddress());
103                 message.setSentDate(new Date());
104                 message.setText(writer.toString());
105                 message.setHeader("MIME-Version", "1.0"); //NOI18N
106                 message.setHeader("Content-Type", "text/plain; charset=UTF-8"); //NOI18N
107                 message.setHeader("Content-Transfer-Encoding", "8bit"); //NOI18N
108
109                 // Is property "errorsto" set ?
110                 if ((this.properties.containsKey("mailer.errorsto")) && (!this.properties.getProperty("mailer.errorsto").isEmpty())) { //NOI18N
111                         // Use this
112                         message.setHeader("Errors-To", this.properties.getProperty("mailer.errorsto")); //NOI18N#
113                 }
114
115                 // Is the property "bouncesto" set?
116                 if ((this.properties.containsKey("mailer.bouncesto")) && (!this.properties.getProperty("mailer.bouncesto").isEmpty())) { //NOI18N
117                         // Use this
118                         message.setHeader("Bounces-To", this.properties.getProperty("mailer.bouncesto")); //NOI18N
119                 }
120
121                 // Is the property "xloop" set?
122                 if ((this.properties.containsKey("mailer.xloop")) && (!this.properties.getProperty("mailer.xloop").isEmpty())) { //NOI18N
123                         // Use this
124                         message.setHeader("X-Loop", this.properties.getProperty("mailer.xloop")); //NOI18N
125                 }
126
127                 // Directly send email
128                 Transport.send(message);
129
130                 // Trace message
131                 this.getLoggerBeanLocal().logTrace("deliverMail: EXIT!"); //NOI18N
132         }
133
134         /**
135          * Sends given mail template to all addresses found in email wrapper
136          * <p>
137          * @param template     Template to send
138          * @param context      Velocity context
139          * @param emailWrapper Email wrapper containing recipient and such
140          * @param mailSession  Mail session
141          * <p>
142          * @throws MessagingException If something happened on message delivery
143          */
144         protected void deliverMailWithTemplate (final Template template, final Context context, final WrapableEmailDelivery emailWrapper, final Session mailSession) throws MessagingException {
145                 // Log trace message
146                 this.getLoggerBeanLocal().logTrace(MessageFormat.format("deliverMailWithTemplate: template={0},emailWrapper={1},mailSession={2} - CALLED!", template, emailWrapper, mailSession)); //NOI18N
147
148                 // The parameters must be valid
149                 if (null == template) {
150                         // Throw NPE
151                         throw new NullPointerException("template is null"); //NOI18N
152                 } else if (null == emailWrapper) {
153                         // Throw NPE
154                         throw new NullPointerException("emailWrapper is null"); //NOI18N
155                 } else if (emailWrapper.getLocale() == null) {
156                         // Throw it again
157                         throw new NullPointerException("emailWrapper.locale is null"); //NOI18N
158                 } else if (emailWrapper.getRecipientAddress() == null) {
159                         // Throw it again
160                         throw new NullPointerException("emailWrapper.recipientAddress is null"); //NOI18N
161                 } else if (emailWrapper.getTemplateName() == null) {
162                         // Throw it again
163                         throw new NullPointerException("emailWrapper.templateName is null"); //NOI18N
164                 } else if (emailWrapper.getTemplateName().isEmpty()) {
165                         // Throw IAE
166                         throw new IllegalArgumentException("emailWrapper.templateName is empty"); //NOI18N
167                 } else if (emailWrapper.getTemplateVariables() == null) {
168                         // Throw NPE again
169                         throw new NullPointerException("emailWrapper.templateVariables is null"); //NOI18N
170                 } else if (emailWrapper.getTemplateVariables().isEmpty()) {
171                         // Throw IAE
172                         throw new IllegalArgumentException("emailWrapper.templateVariables is empty"); //NOI18N
173                 } else if (!emailWrapper.getTemplateVariables().containsKey("baseUrl")) { //NOI18N
174                         // Not set
175                         throw new IllegalArgumentException("emailWrapper.templateVariables.baseUrl is not set"); //NOI18N
176                 } else if (null == mailSession) {
177                         // Throw NPE
178                         throw new NullPointerException("mailSession is null"); //NOI18N
179                 }
180
181                 // Get writer instance
182                 StringWriter writer = new StringWriter();
183
184                 // Merge template
185                 template.merge(context, writer);
186
187                 // Get all out and send it
188                 this.deliverMail(emailWrapper, writer, mailSession);
189
190                 // Trace message
191                 this.getLoggerBeanLocal().logTrace("deliverMailWithTemplate: EXIT!"); //NOI18N
192         }
193
194         /**
195          * Setter for initial properties
196          * <p>
197          * @param properties Initial properties
198          */
199         @SuppressWarnings ("AssignmentToCollectionOrArrayFieldFromParameter")
200         protected void setProperties (final Properties properties) {
201                 // Trace message
202                 this.getLoggerBeanLocal().logTrace(MessageFormat.format("setProperties: properties={0} - CALLED!", properties)); //NOI18N
203
204                 // Are all required properties set?
205                 if (null == properties) {
206                         // Is null
207                         throw new NullPointerException("properties is null"); //NOI18N
208                 } else if (!properties.containsKey("mailer.from")) { //NOI18N
209                         // From not set
210                         throw new IllegalArgumentException("properties.mailer.from is not set"); //NOI18N
211                 } else if (!properties.containsKey("mailer.errorsto")) { //NOI18N
212                         // Errors-To not set
213                         throw new IllegalArgumentException("properties.mailer.errorsto is not set"); //NOI18N
214                 } else if (!properties.containsKey("mailer.bouncesto")) { //NOI18N
215                         // Bounces-To not set
216                         throw new IllegalArgumentException("properties.mailer.bouncesto is not set"); //NOI18N
217                 }
218
219                 // Set it here
220                 this.properties = properties;
221
222                 // Trace message
223                 this.getLoggerBeanLocal().logTrace("setProperties: EXIT!"); //NOI18N
224         }
225
226         /**
227          * Getter for template engine instance
228          * <p>
229          * @return Template engine instance
230          */
231         protected VelocityEngine getTemplateEngine () {
232                 return this.templateEngine;
233         }
234
235 }