C.52 MailTask

A task to send email. Attachments are supported if the PEAR Mail package is installed.

Table C.63: Attributes

NameTypeDescriptionDefaultRequired
fromStringEmail address of sender.noneYes
tolistStringComma-separated list of recipients.noneYes
messageStringMessage to send in the body of the email.noneNo
subjectStringEmail subject line.noneNo
backendStringPEAR Mail backend (see here for possible values).mailNo
backendParamsStringComma-separated key-value pairs with backend specific parameters (see here for possible values).noneNo

C.52.1 Example

<mail tolist="[email protected]" subject="build complete"">
    The build process is a success...
</mail>

C.52.2 Supported Nested Tags