/sigmah/src/test/java/org/sigmah/server/auth/NullMailer.java
Java | 17 lines | 8 code | 4 blank | 5 comment | 0 complexity | 79af67618ac0bfaf2ec8ce6689b8a129 MD5 | raw file
1/* 2 * All Sigmah code is released under the GNU General Public License v3 3 * See COPYRIGHT.txt and LICENSE.txt. 4 */ 5 6package org.sigmah.server.auth; 7 8import org.apache.commons.mail.Email; 9import org.apache.commons.mail.EmailException; 10import org.sigmah.server.mail.MailSender; 11 12public class NullMailer implements MailSender { 13 14 public void send(Email message) throws EmailException { 15 // NOOP 16 } 17}