opentrashmail/tools/testmail.txt

39 lines
754 B
Plaintext

EHLO example.com
MAIL FROM: <sender@example.com>
RCPT TO: <recipient@example.com>
DATA
Subject: Your Subject
From: sender@example.com
To: recipient@example.com
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="boundary-string"
--boundary-string
Content-Type: multipart/alternative; boundary="alternative-boundary"
--alternative-boundary
Content-Type: text/plain
This is the plaintext part of the email.
--alternative-boundary
Content-Type: text/html
<html>
<body>
<p>This is the HTML part of the email.</p>
</body>
</html>
--alternative-boundary--
--boundary-string
Content-Type: application/octet-stream
Content-Disposition: attachment; filename="example.txt"
(Attach the contents of your file here)
--boundary-string--
.
QUIT