Hello,
my sitemap:
<map:transformer name="sendmail"
src="">
<smtphost>smtp.host</smtphost>
<smtpuser>user</smtpuser>
<smtppassword>password</smtppassword>
</map:transformer>
.
.
<map:match
pattern="htmlarea-success-pipeline">
<map:generate type="jx" src=""/>
<map:transform
type="sendmail"/>
<map:serialize
type="xml"/>
</map:match>
htmlarea_success.jx:
<?xml version="1.0"
encoding="ISO-8859-1"?>
<document xmlns:email="
http://apache.org/cocoon/transformation/sendmail">
<email:sendmail>
<email:from>
[EMAIL PROTECTED]</email:from>
<email:to>#{email}</email:to>
<email:subject>#{subject}</email:subject>
<email:body>#{data1}</email:body>
</email:sendmail>
</document>
I changed the
htmlarea example to send mails, when submitting the form. But my result looks
like
that:
<document>
<email:result>
<email:failure to="
[EMAIL PROTECTED]">Invalid
address</email:failure>
</email:result>
</document>
[Jasha
Joachimsthal]