Skip to content
This repository was archived by the owner on May 2, 2024. It is now read-only.

wadeww/send-email-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Send Email action

This action sends an email to recipient list when a workflow finishes.

Inputs

server_address

Required - URL of SMTP server

username

Required - Auth username for SMTP server.

password

Required - Auth password for SMTP server.

from

Required - Sender email address

to

Required - Comma-separeated recipient list of addresses

subject

Required - Email subject line

body

Required - Email body text

Example usage

- 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: Me

About

Github action to send email in workflow. (Using nodemailer)

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors