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/[email protected]

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: "[email protected]"
    password: "xxxxxxx"
    subject: "pipeline name"
    ssl: "true"
    from: "[email protected]"
    to: "[email protected],[email protected]"
    body: "testing body"