simon litwan schrieb: > hello all > > after svn up i get a build failed. > i had a look at the cocoon api and the the mail doesn't seem to have a > method where you can set the body and the mime-type at once. > > Compiling 16 source files to > /home/wyona/cruisecontrol-bin-2.4.1-wyona/projects/sfh/trunk/lenya-1.4.x_trunk/build/lenya/modules/org.apache.lenya.modules.notification/java/classes > > /home/wyona/cruisecontrol-bin-2.4.1-wyona/projects/sfh/trunk/lenya-1.4.x_trunk/src/modules/notification/java/src/org/apache/lenya/notification/EmailNotifier.java:58: > setBody(java.lang.String) in org.apache.cocoon.mail.MailSender cannot be > applied to (java.lang.String,java.lang.String) > mailer.setBody(translatedMessage.getBody(), "text/plain");
Maybe your Cocoon version is not up to date? It looks like the method is there: http://svn.apache.org/viewvc/cocoon/branches/BRANCH_2_1_X/src/blocks/mail/java/org/apache/cocoon/mail/MailSender.java?revision=469258&view=markup /** * Sets the body content of the email message. * * <p>The body can be any of: [EMAIL PROTECTED] org.apache.excalibur.source.Source}, * [EMAIL PROTECTED] org.apache.cocoon.servlet.multipart.Part}, [EMAIL PROTECTED] java.io.InputStream}, * <code>byte[]</code>, [EMAIL PROTECTED] String}, or a subclass. * * @param body The body text of the email message * @param type mime type (optional) */ void setBody(Object body, String type); -- Andreas --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
