You need a domain where you can add:
- TXT domain records and subdomains for sendings
- CNAME records for tracking
- MX records for receiving (optional)
Free account can send 10k mails per month.
echo -e "Subject: TESTMAIL" | sendmail -v [email protected]You need a domain where you can add:
Free account can send 10k mails per month.
echo -e "Subject: TESTMAIL" | sendmail -v [email protected]| #/etc/ssmtp/ssmtp.conf | |
| # The default user (The user that gets all the mails (UID < 1000, usually the admin)) | |
| [email protected] | |
| # Mailgun | |
| mailhub=smtp.mailgun.org:587 | |
| # (Default SMTP Login) | |
| [email protected] | |
| # Default Password | |
| AuthPass=password_of_postmaster | |
| # Your servers hostname | |
| hostname=example.com | |
| # Allow override "From" | |
| FromLineOverride=YES | |
| # Use TLS | |
| UseSTARTTLS=YES |