1 package org.paneris.jammyjoes.mail; 2 3 import java.io.IOException; 4 import java.io.InputStream; 5 6 import javax.mail.MessagingException; 7 8 public interface NewsletterInterface { 9 public void addImage(String image, int index) throws MessagingException, IOException; 10 11 public InputStream getInputStream() throws IOException; 12 13 }