Send email

From OpenCms Wiki
Revision as of 02:53, 19 June 2008 by Thowland (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Via the Opencms Mailing list, here's a simple scriptlet to send email from a JSP page:

<%@ page import="org.opencms.mail.CmsSimpleMail" %>
<% CmsSimpleMail sm = new CmsSimpleMail();
 sm.setMsg("You like it?");
 sm.addTo("someone at somplace.com"); 
 sm.setFrom("other at here.com"); 
 sm.send(); 
%>
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox