Send email
(Difference between revisions)
Line 1: | Line 1: | ||
Via the [http://mail.opencms.org/pipermail/opencms-dev/2005q3/019104.html Opencms Mailing list], here's a simple scriptlet to send email from a JSP page: | Via the [http://mail.opencms.org/pipermail/opencms-dev/2005q3/019104.html Opencms Mailing list], here's a simple scriptlet to send email from a JSP page: | ||
− | + | <code lang="java"> | |
− | < | + | |
<%@ page import="org.opencms.mail.CmsSimpleMail" %> | <%@ page import="org.opencms.mail.CmsSimpleMail" %> | ||
<% CmsSimpleMail sm = new CmsSimpleMail(); | <% CmsSimpleMail sm = new CmsSimpleMail(); | ||
Line 9: | Line 8: | ||
sm.send(); | sm.send(); | ||
%> | %> | ||
− | </ | + | </code> |
+ | {{stub}} |
Revision as of 11:36, 27 June 2008
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(); %>
This article is a stub. You can help OpenCms Wiki by expanding it.
|