ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# C.57 MailTask A task to send email. Attachments are supported if the [PEAR Mail package](http://pear.php.net/package/Mail) is installed. Table C.68:聽Attributes NameTypeDescriptionDefaultRequired`from``String`Email address of sender.noneYes`tolist``String`Comma-separated list of recipients.noneYes`message``String`Message to send in the body of the email.noneNo`subject``String`Email subject line.noneNo`backend``String`PEAR Mail backend (see [here](http://pear.php.net/manual/en/package.mail.mail.factory.php) for possible values).mailNo`backendParams``String`Comma-separated key-value pairs with backend specific parameters (see [here](http://pear.php.net/manual/en/package.mail.mail.factory.php) for possible values).noneNo C.57.1 Example ``` <mail tolist="user@example.org" subject="build complete""> The build process is a success... </mail> ``` C.57.2 Supported Nested Tags - `fileset` Files to be attached.