2 * Rhynodge - EmailAction.java - Copyright © 2013 David Roden
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.
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.
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/>.
18 package net.pterodactylus.rhynodge.actions;
20 import java.util.Properties;
22 import javax.mail.Message.RecipientType;
23 import javax.mail.MessagingException;
24 import javax.mail.Session;
25 import javax.mail.Transport;
26 import javax.mail.internet.InternetAddress;
27 import javax.mail.internet.MimeBodyPart;
28 import javax.mail.internet.MimeMessage;
29 import javax.mail.internet.MimeMultipart;
31 import net.pterodactylus.rhynodge.Action;
32 import net.pterodactylus.rhynodge.output.Output;
35 * {@link Action} implementation that sends an email containing the triggering
36 * object to an email address.
38 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
40 public class EmailAction implements Action {
42 /** The name of the SMTP host. */
43 private final String hostname;
45 /** The email address of the sender. */
46 private final String sender;
48 /** The email address of the recipient. */
49 private final String recipient;
52 * Creates a new email action.
55 * The hostname of the SMTP server
57 * The email address of the sender
59 * The email address of the recipient
61 public EmailAction(String hostname, String sender, String recipient) {
62 this.hostname = hostname;
64 this.recipient = recipient;
75 public void execute(Output output) {
76 Properties properties = System.getProperties();
77 properties.put("mail.smtp.host", hostname);
78 Session session = Session.getInstance(properties);
79 MimeMessage message = new MimeMessage(session);
82 message.setFrom(new InternetAddress(sender));
83 message.setRecipient(RecipientType.TO, new InternetAddress(recipient));
84 message.setSubject(output.summary());
86 /* create text and html parts. */
87 MimeMultipart multipart = new MimeMultipart();
88 multipart.setSubType("alternative");
89 MimeBodyPart textPart = new MimeBodyPart();
90 textPart.setContent(output.text("text/plain", -1), "text/plain;charset=utf-8");
91 MimeBodyPart htmlPart = new MimeBodyPart();
92 htmlPart.setContent(output.text("text/html", -1), "text/html;charset=utf-8");
93 multipart.addBodyPart(textPart);
94 multipart.addBodyPart(htmlPart);
95 message.setContent(multipart);
97 Transport.send(message);
98 } catch (MessagingException me1) {