2009-06-07 18:59:43 +00:00
|
|
|
/*
|
2011-01-23 20:34:05 -03:00
|
|
|
* Copyright [2011] [wisemapping]
|
2009-06-07 18:59:43 +00:00
|
|
|
*
|
2011-01-23 21:03:12 -03:00
|
|
|
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
|
|
|
|
* It is basically the Apache License, Version 2.0 (the "License") plus the
|
2011-01-23 20:34:05 -03:00
|
|
|
* "powered by wisemapping" text requirement on every single page;
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the license at
|
2009-06-07 18:59:43 +00:00
|
|
|
*
|
2011-01-23 20:34:05 -03:00
|
|
|
* http://www.wisemapping.org/license
|
2009-06-07 18:59:43 +00:00
|
|
|
*
|
2011-01-23 20:34:05 -03:00
|
|
|
* 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.
|
2009-06-07 18:59:43 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
package com.wisemapping.mail;
|
|
|
|
|
|
|
|
import org.apache.velocity.app.VelocityEngine;
|
|
|
|
import org.springframework.mail.javamail.JavaMailSender;
|
|
|
|
import org.springframework.mail.javamail.MimeMessageHelper;
|
|
|
|
import org.springframework.mail.javamail.MimeMessagePreparator;
|
|
|
|
import org.springframework.ui.velocity.VelocityEngineUtils;
|
|
|
|
|
|
|
|
import javax.mail.internet.MimeMessage;
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
public final class Mailer {
|
|
|
|
|
|
|
|
//~ Instance fields ......................................................................................
|
|
|
|
|
|
|
|
private JavaMailSender mailSender;
|
|
|
|
private VelocityEngine velocityEngine;
|
|
|
|
private String registrationEmail;
|
|
|
|
private String siteEmail;
|
|
|
|
|
|
|
|
//~ Methods ..............................................................................................
|
|
|
|
|
|
|
|
public Mailer(String registrationEmail, String siteEmail)
|
|
|
|
{
|
|
|
|
this.registrationEmail = registrationEmail;
|
|
|
|
this.siteEmail = siteEmail;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getRegistrationEmail()
|
|
|
|
{
|
|
|
|
return registrationEmail;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSiteEmail()
|
|
|
|
{
|
|
|
|
return siteEmail;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void sendEmail(final String from, final String to, final String subject, final Map model,
|
|
|
|
final String templateMail) {
|
|
|
|
final MimeMessagePreparator preparator =
|
|
|
|
new MimeMessagePreparator() {
|
|
|
|
public void prepare(MimeMessage mimeMessage)
|
|
|
|
throws Exception {
|
|
|
|
final MimeMessageHelper message = new MimeMessageHelper(mimeMessage);
|
|
|
|
message.setTo(to);
|
|
|
|
message.setFrom(from);
|
|
|
|
message.setSubject(subject);
|
|
|
|
|
|
|
|
final String text =
|
|
|
|
VelocityEngineUtils.mergeTemplateIntoString(velocityEngine, "/mail/" + templateMail,
|
|
|
|
model);
|
|
|
|
|
|
|
|
message.setText(text, true);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-07-20 21:44:52 -03:00
|
|
|
this.mailSender.send(preparator);
|
2009-06-07 18:59:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setMailSender(JavaMailSender mailer) {
|
|
|
|
this.mailSender = mailer;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setVelocityEngine(VelocityEngine engine) {
|
|
|
|
this.velocityEngine = engine;
|
|
|
|
}
|
|
|
|
}
|