2022-01-16 18:20:39 +00:00
|
|
|
---
|
|
|
|
title: "email"
|
|
|
|
tags: [ "Documentation", "chat" ]
|
|
|
|
---
|
2020-03-31 02:24:30 +00:00
|
|
|
# Sendmail
|
|
|
|
|
|
|
|
Compose a message like this:
|
|
|
|
|
|
|
|
```
|
|
|
|
To: alice@domain.com
|
|
|
|
Subject: my new mail server
|
|
|
|
From: literally@anything.com
|
|
|
|
|
|
|
|
This is the message
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
... and put it in ~/mail.txt.
|
|
|
|
Then send with sendmail using:
|
|
|
|
|
|
|
|
> sendmail ~/mail.txt
|
|
|
|
|
|
|
|
|