Skip to content
share

GitHub Action

px email sender

v0.0.3-alpha Pre-release

px email sender

share

px email sender

docker action for sending email using python stmp

Installation

Copy and paste the following snippet into your .yml file.

              

- name: px email sender

uses: joekrom/px-notifier@v0.0.3-alpha

Learn more about this action in joekrom/px-notifier

Choose a version

px-notifier

name: Deploy to Cloud Foundry

on: push: branches: - main

jobs: build: runs-on: ubuntu-22.04

deploy: runs-on: ubuntu-22.04 needs: build

steps:
- uses: joekrom/px-notifier@main
  with:
    smtp_address: "smtp.office365.com"
    smtp_port: "587"
    username: "notify@gmail.com"
    password: "xxxxxxx"
    subject: "pipeline name"
    ssl: "true"
    from: "notify@gmail.com"
    to: "johndoe@yahoo.fr,marydoe@yahoo.fr"
    body: "testing body"