This action sends an email notification to the specified recipient.
Motivation:
- Zero domain/DNS configuration
- No need to give out SMTP credentials
- It Just Works™️
Required The recipient of the email
Email subject
Email body
Email body MIME type
Filename of the attachment
"ok" if the notification sent successfully.
uses: cinotify/github-action@main
with:
to: '[email protected]'
subject: 'building main'
body: '<em>This is a notification from GitHub actions.</em>'
type: 'text/html'
attachment: 'artifacts.zip'