woodpecker-email/DOCS.md
2015-12-11 10:40:37 +01:00

25 lines
633 B
Markdown

Use this plugin for sending build status notifications via Email. You can
override the default configuration with the following parameters:
* `from` - Send notifications from this address
* `host` - SMTP server host
* `port` - SMTP server port, defaults to `587`
* `username` - SMTP username
* `password` - SMTP password
* `recipients` - List of recipients, defaults to commit email
## Example
The following is a sample configuration in your .drone.yml file:
```yaml
notify:
email:
from: noreply@github.com
host: smtp.mailgun.org
username: octocat
password: 12345
recipients:
- octocat@github.com
```