Skip to content

Commit

Permalink
SMTP: Updating README
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas Hinderberger committed Jul 2, 2024
1 parent d62114a commit 8817074
Showing 1 changed file with 26 additions and 2 deletions.
28 changes: 26 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2674,7 +2674,7 @@ available as JSON in the following schema:
"to": [
"testreceiver3@programmfabrik.de"
]
},
}
]
}
```
Expand All @@ -2688,6 +2688,10 @@ the corresponding index is made available as JSON:
```json
{
"bodySize": 306,
"contentType": "multipart/mixed",
"contentTypeParams": {
"boundary": "d36c3118be4745f9a1cb4556d11fe92d"
},
"from": [
"testsender2@programmfabrik.de"
],
Expand Down Expand Up @@ -2716,6 +2720,10 @@ the corresponding index is made available as JSON:
"multiparts": [
{
"bodySize": 15,
"contentType": "text/plain",
"contentTypeParams": {
"charset": "utf-8"
},
"headers": {
"Content-Type": [
"text/plain; charset=utf-8"
Expand All @@ -2726,6 +2734,10 @@ the corresponding index is made available as JSON:
},
{
"bodySize": 39,
"contentType": "text/html",
"contentTypeParams": {
"charset": "utf-8"
},
"headers": {
"Content-Type": [
"text/html; charset=utf-8"
Expand All @@ -2736,7 +2748,7 @@ the corresponding index is made available as JSON:
}
],
"multipartsCount": 2,
"receivedAt": "2024-07-02T11:44:32.767921301+02:00",
"receivedAt": "2024-07-02T12:54:44.443488367+02:00",
"smtpFrom": "testsender2@programmfabrik.de",
"smtpRcptTo": [
"testreceiver2@programmfabrik.de"
Expand Down Expand Up @@ -2771,6 +2783,10 @@ following schema:
"multiparts": [
{
"bodySize": 15,
"contentType": "text/plain",
"contentTypeParams": {
"charset": "utf-8"
},
"headers": {
"Content-Type": [
"text/plain; charset=utf-8"
Expand All @@ -2781,6 +2797,10 @@ following schema:
},
{
"bodySize": 39,
"contentType": "text/html",
"contentTypeParams": {
"charset": "utf-8"
},
"headers": {
"Content-Type": [
"text/html; charset=utf-8"
Expand All @@ -2801,6 +2821,10 @@ metadata about the multipart with the corresponding index is made available:
```json
{
"bodySize": 15,
"contentType": "text/plain",
"contentTypeParams": {
"charset": "utf-8"
},
"headers": {
"Content-Type": [
"text/plain; charset=utf-8"
Expand Down

0 comments on commit 8817074

Please sign in to comment.