[Yanel-commits] rev 47279 - public/yanel/contributions/resources/creatable-modifiable-deletable-v3/src/java/org/wyona/yanel/impl/resources

michi at wyona.com michi at wyona.com
Wed Jan 27 12:14:31 CET 2010


Author: michi
Date: 2010-01-27 12:14:31 +0100 (Wed, 27 Jan 2010)
New Revision: 47279

Modified:
   public/yanel/contributions/resources/creatable-modifiable-deletable-v3/src/java/org/wyona/yanel/impl/resources/BasicFormResource.java
Log:
use MailUtil for sending emails

Modified: public/yanel/contributions/resources/creatable-modifiable-deletable-v3/src/java/org/wyona/yanel/impl/resources/BasicFormResource.java
===================================================================
--- public/yanel/contributions/resources/creatable-modifiable-deletable-v3/src/java/org/wyona/yanel/impl/resources/BasicFormResource.java	2010-01-27 11:13:58 UTC (rev 47278)
+++ public/yanel/contributions/resources/creatable-modifiable-deletable-v3/src/java/org/wyona/yanel/impl/resources/BasicFormResource.java	2010-01-27 11:14:31 UTC (rev 47279)
@@ -141,6 +141,8 @@
     }
     
     /**
+     * @deprecated Use org.wyona.yanel.core.util.MailUtil.send() instead
+     *
      * Sends an email. E.g. use this method to send confirmation mails.
      * 
      * @param from sender email address
@@ -150,6 +152,11 @@
      * @param content email content
      */
     protected void sendMail(String from, String replyTo, String to, String subject, String content) throws Exception {
+        log.warn("DEPRECATED");
+        org.wyona.yanel.core.util.MailUtil.send(from, replyTo, to, subject, content);
+
+
+/*
         // Create a mail session
         java.util.Properties props = new java.util.Properties();
         props.put("mail.smtp.host", getResourceConfigProperty("smtpHost"));
@@ -170,14 +177,17 @@
         msg.setRecipient(Message.RecipientType.TO, new InternetAddress(to));
         msg.setSubject(subject);
         msg.setText(content);
+*/
 
 /*
         msg.setSubject(subject,"utf-8");
         msg.setContent(content, "text/plain;charset=utf-8");
 */
 
+/*
         // Send the message
         Transport.send(msg);
+*/
     }
     
     /**



More information about the Yanel-commits mailing list