diff --git a/CHANGELOG.md b/CHANGELOG.md
index bde2af0..90557df 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,15 @@
Notable changes to Mailpit will be documented in this file.
+## [v1.5.2]
+
+### API
+- Include Reply-To in message summary (including Web UI)
+
+### UI
+- Tab to view formatted message headers
+
+
## [v1.5.1]
### Feature
diff --git a/README.md b/README.md
index 2a70794..1f93c51 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ Mailpit is inspired by [MailHog](#why-rewrite-mailhog), but much, much faster.
- Runs entirely from a single binary, no installation required
- SMTP server (default `0.0.0.0:1025`)
-- Web UI to view emails (formatted HTML, highlighted HTML source, text, raw source and MIME attachments including image thumbnails)
+- Web UI to view emails (formatted HTML, highlighted HTML source, text, headers, raw source and MIME attachments including image thumbnails)
- Advanced mail search ([see wiki](https://github.com/axllent/mailpit/wiki/Mail-search))
- Message tagging ([see wiki](https://github.com/axllent/mailpit/wiki/Tagging))
- Real-time web UI updates using web sockets for new mail
@@ -41,10 +41,12 @@ The Mailpit web UI listens by default on `http://0.0.0.0:8025`, and the SMTP por
Mailpit runs as a single binary and can be installed in different ways:
+
### Install via Brew (Mac)
Add the repository to your taps with `brew tap axllent/apps`, and then install Mailpit with `brew install mailpit`.
+
### Install via bash script (Linux & Mac)
Linux & Mac users can install it directly to `/usr/local/bin/mailpit` with:
@@ -53,14 +55,17 @@ Linux & Mac users can install it directly to `/usr/local/bin/mailpit` with:
sudo bash < <(curl -sL https://raw.githubusercontent.com/axllent/mailpit/develop/install.sh)
```
+
### Download static binary (Windows, Linux and Mac)
Static binaries can always be found on the [releases](https://github.com/axllent/mailpit/releases/latest). The `mailpit` binary can extracted and copied to your `$PATH`, or simply run as `./mailpit`.
+
### Docker
See [Docker instructions](https://github.com/axllent/mailpit/wiki/Docker-images).
+
### Compile from source
To build Mailpit from source see [building from source](https://github.com/axllent/mailpit/wiki/Building-from-source).
diff --git a/docs/apiv1/Message.md b/docs/apiv1/Message.md
index 5cf47b5..d40c36e 100644
--- a/docs/apiv1/Message.md
+++ b/docs/apiv1/Message.md
@@ -28,6 +28,7 @@ Returns a JSON summary of the message and attachments.
],
"Cc": [],
"Bcc": [],
+ "ReplyTo": [],
"Subject": "Message subject",
"Date": "2016-09-07T16:46:00+13:00",
"Text": "Plain text MIME part of the email",
@@ -57,7 +58,7 @@ Returns a JSON summary of the message and attachments.
- `Read` - always true (message marked read on open)
- `From` - Name & Address, or null
-- `To`, `CC`, `BCC` - Array of Names & Address
+- `To`, `CC`, `BCC`, `ReplyTo` - Array of Names & Address
- `Date` - Parsed email local date & time from headers
- `Size` - Total size of raw email
- `Inline`, `Attachments` - Array of attachments and inline images.
diff --git a/server/ui-src/assets/styles.scss b/server/ui-src/assets/styles.scss
index db717b4..26d628e 100644
--- a/server/ui-src/assets/styles.scss
+++ b/server/ui-src/assets/styles.scss
@@ -38,6 +38,14 @@
}
}
+.nav-tabs .nav-link {
+ @include media-breakpoint-down(sm) {
+ // font-size: 14px;
+ padding-left: 10px;
+ padding-right: 10px;
+ }
+}
+
#loading {
position: absolute;
top: 0;
diff --git a/server/ui-src/templates/Headers.vue b/server/ui-src/templates/Headers.vue
new file mode 100644
index 0000000..a12357c
--- /dev/null
+++ b/server/ui-src/templates/Headers.vue
@@ -0,0 +1,38 @@
+
+
+
+
+