Send Email Action (Node)
ActionsTags
(2)This action sends an email to recipient list when a workflow finishes.
Required - URL of SMTP server
Required - Auth username for SMTP server.
Required - Auth password for SMTP server.
Required - Sender email address
Required - Comma-separeated recipient list of addresses
Required - Email subject line
Required - Email body text
- name: Send some mail
uses: wadeww/send-email-action@master
with:
server_address: smtp.gmail.com
port: 465
username: ${{secrets.MAIL_USERNAME}}
password: ${{secrets.MAIL_PASSWORD}}
subject: Workflow finished
body: Job completed ${{job.status}}
to: john@denver.com, elton@john.com
from: MeSend Email Action (Node) is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.