diff options
Diffstat (limited to 'tests/emails/rfc/006.eml')
-rw-r--r-- | tests/emails/rfc/006.eml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/emails/rfc/006.eml b/tests/emails/rfc/006.eml new file mode 100644 index 0000000..f353adb --- /dev/null +++ b/tests/emails/rfc/006.eml @@ -0,0 +1,23 @@ +From: sender@example.com +To: recipient@example.com +Subject: Multipart Email Example +Content-Type: multipart/alternative; boundary="boundary-string" + +--boundary-string +Content-Type: text/plain; charset="utf-8" +Content-Transfer-Encoding: quoted-printable +Content-Disposition: inline + +Plain text email goes here! +This is the fallback if email client does not support HTML + +--boundary-string +Content-Type: text/html; charset="utf-8" +Content-Transfer-Encoding: quoted-printable +Content-Disposition: inline + +<h1>This is the HTML Section!</h1> +<p>This is what displays in most modern email clients</p> + +--boundary-string-- + |