All Projects → dawidd6 → Action Send Mail

dawidd6 / Action Send Mail

Licence: mit
⚙️ A GitHub Action to send an email to multiple recipients

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Action Send Mail

Mfcmapi
MFCMAPI
Stars: ✭ 501 (+351.35%)
Mutual labels:  email, mail
Ismailfine
A simple (but correct) library for validating email addresses. Supports mail addresses as defined in rfc5322 as well as the new Internationalized Mail Address standards (rfc653x). Based on https://github.com/jstedfast/EmailValidation
Stars: ✭ 9 (-91.89%)
Mutual labels:  email, mail
Core
Dovecot mail server
Stars: ✭ 540 (+386.49%)
Mutual labels:  email, mail
Gatsby Mail
A Gatsby email *application*
Stars: ✭ 450 (+305.41%)
Mutual labels:  email, mail
Mailer
A lightweight PHP SMTP mail sender
Stars: ✭ 53 (-52.25%)
Mutual labels:  email, mail
Sieve
Sieve Script Editor
Stars: ✭ 452 (+307.21%)
Mutual labels:  email, mail
Node Dkim Key
DKIM (DomainKeys Identified Mail) Key
Stars: ✭ 5 (-95.5%)
Mutual labels:  email, mail
ESP-Mail-Client
⚡️Arduino Mail Client Library to send, read and get incoming mail notification for ESP32, ESP8266 and SAMD21 devices. The library also supported other Arduino devices using Clients interfaces e.g. WiFiClient, EthernetClient, and GSMClient.
Stars: ✭ 78 (-29.73%)
Mutual labels:  mail, email
Imapcopy
Recursively copy all e-mail messages and folders from one IMAP account to another.
Stars: ✭ 52 (-53.15%)
Mutual labels:  email, mail
Postfwd Anti Geoip Spam Plugin
Postfwd plugin for blocking international spam botnets based on geographical location of IP addresses used to login to postfix via sasl.
Stars: ✭ 40 (-63.96%)
Mutual labels:  email, mail
imapx
A cross-platform IMAP library for .NET, supporting .Net 2.0 - 4.5, Mono and Windows Phone
Stars: ✭ 28 (-74.77%)
Mutual labels:  mail, email
Mailmergelib
MailMergeLib is a mail message client library which provides comfortable mail merge capabilities for text, inline images and attachments, as well as good throughput and fault tolerance for sending mail messages.
Stars: ✭ 97 (-12.61%)
Mutual labels:  email, mail
laravel-mjml
Laravel MJML offers support for rendering MJML syntax into in-line HTML that can be sent within mails.
Stars: ✭ 26 (-76.58%)
Mutual labels:  mail, email
Astroid
A graphical threads-with-tags style, lightweight and fast, e-mail client for Notmuch
Stars: ✭ 476 (+328.83%)
Mutual labels:  email, mail
ProtonClient
An unofficial desktop client for ProtonMail done with electron nativefier
Stars: ✭ 50 (-54.95%)
Mutual labels:  mail, email
Php Mime Mail Parser
A fully tested email parser for PHP 7.2+ (mailparse extension wrapper).
Stars: ✭ 687 (+518.92%)
Mutual labels:  email, mail
is-biz-mail-php
isBizMail tells you whether a given email address belongs to a free email account provider (gmail.com, yahoo.es, yandex.ru etc) or not.
Stars: ✭ 19 (-82.88%)
Mutual labels:  mail, email
himalaya
Command-line interface for email management
Stars: ✭ 1,715 (+1445.05%)
Mutual labels:  mail, email
Sendria
Sendria (formerly MailTrap) is a SMTP server designed to run in your dev/test environment, that is designed to catch any email you or your application is sending, and display it in a web interface instead of sending to real world.
Stars: ✭ 30 (-72.97%)
Mutual labels:  email, mail
Mail4delphi
Mail4Delphi uses the Indy component to send the email.
Stars: ✭ 60 (-45.95%)
Mutual labels:  email, mail

Send mail Github Action

An action that simply sends a mail to multiple recipients.

Usage

- name: Send mail
  uses: dawidd6/[email protected]
  with:
    server_address: smtp.gmail.com
    server_port: 465
    username: ${{secrets.MAIL_USERNAME}}
    password: ${{secrets.MAIL_PASSWORD}}
    subject: Github Actions job result
    # Literal body:
    body: Build job of ${{github.repository}} completed successfully!
    # Read file contents as body:
    body: file://README.md
    to: [email protected],[email protected]
    from: Luke Skywalker # <[email protected]>
    # Optional carbon copy recipients
    cc: [email protected],[email protected]
    # Optional blind carbon copy recipients
    bcc: [email protected],[email protected]
    # Optional content type (defaults to text/plain):
    content_type: text/html
    # Optional converting Markdown to HTML (set content_type to text/html too):
    convert_markdown: true
    # Optional attachments:
    attachments: attachments.zip,git.diff,./dist/static/main.js
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].