php-censor/docs/en/plugins/email.md

38 lines
1.1 KiB
Markdown
Raw Normal View History

2016-07-19 11:12:28 +02:00
Plugin Email
------------
2016-07-17 16:20:35 +02:00
Sends a build status email.
2016-07-19 11:12:28 +02:00
Configuration
=============
### Options
2016-07-17 16:20:35 +02:00
* **committer** - Whether or not to send the email to the committer that prompted this build.
* **addresses** - A list of addresses to send to.
* **default_mailto_address** - A default address to send to.
* **cc** - A list of addresses that will receive a copy of every emails sent.
* **template** - The template to use, options are short and long. Default is short on success and long otherwise.
**Note:** _This plugin will only work if you configured email settings during installation or configured them later in Admin Options > Settings > Email Settings_
2016-07-19 11:12:28 +02:00
### Examples
2016-07-17 16:20:35 +02:00
See [Adding PHPCI Support to Your Projects](https://www.phptesting.org/wiki/Adding-PHPCI-Support-to-Your-Projects) for more information about how to configure plugins.
Send an email to the committer as well as one@exameple.com if a build fails:
```yml
failure:
email:
committer: true
default_mailto_address: one@example.com
```
Send an email to one@example.com every time a build is run:
```yml
complete:
email:
default_mailto_address: one@example.com
```