| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| Sender |
|
| 1.0;1 |
| 1 | package org.paneris.jammyjoes.mail; | |
| 2 | ||
| 3 | import java.io.IOException; | |
| 4 | ||
| 5 | import javax.mail.MessagingException; | |
| 6 | ||
| 7 | import com.quiotix.html.parser.ParseException; | |
| 8 | ||
| 9 | public interface Sender { | |
| 10 | public void send(MimeMail newsletter) throws MessagingException, ParseException, IOException; | |
| 11 | } |