| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| MailTransport |
|
| 1.0;1 |
| 1 | package org.paneris.jammyjoes.mail; | |
| 2 | ||
| 3 | import javax.mail.MessagingException; | |
| 4 | ||
| 5 | ||
| 6 | public interface MailTransport { | |
| 7 | ||
| 8 | void send(MimeMail email) throws MessagingException; | |
| 9 | ||
| 10 | } |