EML sample file
eml_invoice_export_notification_sample.eml
1.4 KB
message/rfc822
SHA256 verified
File details
Filename
eml_invoice_export_notification_sample.emlSize1.4 KB (1408 bytes)
MIME type
message/rfc822Extension
.emlSHA256
3279ea81f1a22665deb47e82e7c7c38e06ef4a7f5a19a4b55d616f3457481310Download commands
Use in scripts and tests
curl -L -o eml_invoice_export_notification_sample.eml \
https://samplefile.com/samples/download/document/eml/eml_invoice_export_notification_sample.eml/
wget -O eml_invoice_export_notification_sample.eml \
https://samplefile.com/samples/download/document/eml/eml_invoice_export_notification_sample.eml/
import requests
url = "https://samplefile.com/samples/download/document/eml/eml_invoice_export_notification_sample.eml/"
resp = requests.get(url)
with open("eml_invoice_export_notification_sample.eml", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/document/eml/eml_invoice_export_notification_sample.eml/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("eml_invoice_export_notification_sample.eml", buf);
# Download and verify SHA256
curl -L -o eml_invoice_export_notification_sample.eml https://samplefile.com/samples/download/document/eml/eml_invoice_export_notification_sample.eml/
echo "3279ea81f1a22665deb47e82e7c7c38e06ef4a7f5a19a4b55d616f3457481310 eml_invoice_export_notification_sample.eml" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/document/eml/eml_invoice_export_notification_sample.eml/").content
assert hashlib.sha256(data).hexdigest() == "3279ea81f1a22665deb47e82e7c7c38e06ef4a7f5a19a4b55d616f3457481310"
More EML files
Other EML Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
eml_calendar_invite_sample.eml |
1.0 KB | 0096f8913522486c… |
Download |
eml_support_thread_sample.eml |
950 B | 36f7824cdebe52a7… |
Download |
Learn more