{ claus.conrad }

Email

Resources

One-time inboxes

Cleanup tools

Development tools

  • Mailpit - acts as a catch-all SMTP server, displaying all received messages using a web UI

Design

Workflow testing

Preview rendering

Deliverability

Sending services

  • [Twilio SendGrid](…/Twilio SendGrid/)
  • Mailtrap

Analysis

FAQ

Compose mail from the commandline ([Fedora](…/Fedora Linux/))

Installation (once)

This will install s-nail, a commandline “MUA” (Mail User Agent) with built-in SMTP (“MTA”) capability:

sudo dnf install mailx
Shell

The command mail will become a symlink to s-nail. Better verify this using:

ll -ld $(which mail)
Shell

Configuration (once)

set asksub  
set v15-compat  
set mta=smtps://apikey:SENDGRID_APIKEY_GOES_HERE@smtp.sendgrid.net:465 smtp-auth=login
set from=SENDER_ADDRESS_GOES_HERE
Mailrc
chmod 600 ~/.mailrc
Shell

Usage

mail RECIPIENT_ADDRESS
# Type message here
# Press Ctrl+D to send, Ctrl+C to cancel
Shell