Send email
From OpenCms Wiki
(Difference between revisions)
Line 8: | Line 8: | ||
sm.send(); | sm.send(); | ||
%> | %> | ||
+ | </code> | ||
+ | |||
+ | You must have the mail-element configured in opencms-system.xml: | ||
+ | <code lang="xml"> | ||
+ | <mail> | ||
+ | <mailfrom>something@somewhere.com</mailfrom> | ||
+ | <mailhost name="your.smtp.server" protocol="smtp" user="username" | ||
+ | password="secure"/> | ||
+ | <mailhost name="main.smtp.server"/> | ||
+ | <mailhost name="failover.smtp.server"/> | ||
+ | </mail> | ||
</code> | </code> | ||
{{stub}} | {{stub}} |
Latest revision as of 15:00, 30 November 2009
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(); %>
You must have the mail-element configured in opencms-system.xml:
<mail> <mailfrom>something@somewhere.com</mailfrom> <mailhost name="your.smtp.server" protocol="smtp" user="username" password="secure"/> <mailhost name="main.smtp.server"/> <mailhost name="failover.smtp.server"/> </mail>
This article is a stub. You can help OpenCms Wiki by expanding it.
|