Basic tag for sending an email. Supports one attachment, multiple to addresses delimited by ";",multiple cc addresses, etc.
| Attribute Name | Type | Description |
| CC | org.apache.commons.jelly.expression.Expression | ";" seperated list of people to cc |
| attach | java.io.File | Set the email attachment for the message. Only 1 attachment is supported right now |
| encodeXML | boolean | Sets whether we should encode the XML body as text or not. The defaultis false so that the body will assumed to be valid XML |
| escapeText | boolean |
|
| from | org.apache.commons.jelly.expression.Expression | Set the from address for the message |
| message | org.apache.commons.jelly.expression.Expression | Set the message body. This will override the Jelly tag body |
| server | org.apache.commons.jelly.expression.Expression | Set the smtp server for the message. If not set the systemproperty "mail.smtp.host" will be used. |
| subject | org.apache.commons.jelly.expression.Expression | Set the email subject |
| to | org.apache.commons.jelly.expression.Expression | ";" seperated list of people to send to |
| trim | boolean |
|