Export artifacts by email
You can use the Drone Email plugin to export reports, data, and other artifacts by email.
Use the Email plugin
-
Add an SMTP configuration in Harness. Username and Password are not required.
-
Make sure your pipeline produces the artifact that you wan to include in the email, such as a
.txt
,.html
, or.csv
file. For example:- step:
type: Run
name: Run_1
identifier: Run_1
spec:
connectorRef: rutvijdocker
image: alpine
shell: Sh
command: |-
touch test.html
echo "My Test HTML" > test.html
cat test.html -
Use the Email plugin in a Plugin step, for example:
- step:
type: Plugin
name: Plugin_1
identifier: Plugin_1
spec:
connectorRef: YOUR_DOCKER_CONNECTOR_ID
image: drillster/drone-email ## This is the email plugin image.
settings:
from: sender@mysite.com ## The email address to send the notification from. Can be the same as the From Address in your Harness SMTP configuration.
recipients: test@mysite.com ## List of recipients to send the email to (besides the commit author).
host: smtp.somesmtpserver.com ## SMTP server address from your Harness SMTP configuration.
port: "25" ## SMTP server port from your Harness SMTP configuration.
skip_verify: "true" ## Set to 'true' to skip cert verification.
subject: somesubject ## Subject line.
body: file:///harness/test.html ## The email body. This can be an inline template or a URL. `file:///` is allowed.
For information about Email plugin settings, go to the Drone Email plugin documentation.
For information about the Plugin step settings, go to the Plugin step settings documentation.
Send with username and password authentication
You don't need to provide the SMPT username
and password
, but you can include these parameters if you want or need to. For information about Email plugin settings, including the username
and password
, go to the Drone Email plugin documentation.
Send data in the body
You can send the data either in the body of the email or as an attachment.
Here's an example of a Plugin step where the data is in the email body.
- step:
type: Plugin
name: Plugin_1
identifier: Plugin_1
spec:
connectorRef: account.harnessImage
image: drillster/drone-email
settings:
from: sender@mysite.com
recipients: test@mysite.com
host: smtp.somesmtpserver.com
port: "25"
skip_verify: "true"
subject: somesubject
body: file:///harness/test.html
Send data as an attachment
You can send the data either in the body of the email or as an attachment.
Here's an example of a Plugin step where the data is sent as an attachment.
- step:
type: Plugin
name: Plugin_1
identifier: Plugin_1
spec:
connectorRef: account.harnessImage
image: drillster/drone-email
settings:
from: sender@mysite.com
recipients: test@mysite.com
host: smtp.somesmtpserver.com
port: "25"
skip_verify: "true"
subject: somesubject
body: somebody
attachment: /harness/test.html