Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

Commit

Permalink
Forgot to add the .eml files needed for the specs.
Browse files Browse the repository at this point in the history
  • Loading branch information
postmodern committed Nov 27, 2014
1 parent edbaa38 commit 177f68e
Show file tree
Hide file tree
Showing 5 changed files with 125 additions and 0 deletions.
19 changes: 19 additions & 0 deletions spec/email/email.eml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Date: Tue, 01 Jul 2014 14:21:08 -0700
From: Hal Brodigan <hal@trailofbits.com>
To: Dan Guido <dan@trailofbits.com>
Message-ID: <53b32644bd0dd_b221112ff0516b4@tank.lab.mail>
Subject: Hello, Dan Guido
Mime-Version: 1.0
Content-Type: text/html;
charset=UTF-8
Content-Transfer-Encoding: 7bit

<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>test email</title>
</head>
<body text="#000000" bgcolor="#FFFFFF">
Checkout these <a href="http://imgur.com/XXX">nudes</a>.<br>
</body>
</html>
19 changes: 19 additions & 0 deletions spec/email/email_template.eml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Date: Tue, 01 Jul 2014 14:21:08 -0700
Message-ID: <53b32644bd0dd_b221112ff0516b4@tank.lab.mail>
To: {{ to.name }} <{{ to.address }}>
From: {{ from.name }} <{{ from.address }}>
Subject: Hello, {{ to.name }}
Mime-Version: 1.0
Content-Type: text/html;
charset=UTF-8
Content-Transfer-Encoding: 7bit

<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>test email</title>
</head>
<body text="#000000" bgcolor="#FFFFFF">
Checkout these <a href="{% link %}">nudes</a>.<br>
</body>
</html>
34 changes: 34 additions & 0 deletions spec/email/multipart_email.eml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
Date: Tue, 01 Jul 2014 14:50:15 -0700
Message-ID: <53b32d17e1a53_f06ecaff421598@tank.lab.mail>
To: Dan Guido <dan@trailofbits.com>
From: Hal Brodigan <hal@trailofbits.com>
Subject: Hello, Dan Guido
Mime-Version: 1.0
Content-Type: multipart/alternative;
boundary="--==_mimepart_53b3322c328c6_f06ecaff42204a";
charset=UTF-8
Content-Transfer-Encoding: 7bit


----==_mimepart_53b3322c328c6_f06ecaff42204a
Content-Type: text/plain;
charset=UTF-8
Content-Transfer-Encoding: 7bit
Checkout these nudes (http://imgur.com/XXX).
----==_mimepart_53b3322c328c6_f06ecaff42204a
Content-Type: text/html;
charset=ISO-8859-1
Content-Transfer-Encoding: 7bit

<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>test email</title>
</head>
<body text="#000000" bgcolor="#FFFFFF">
Checkout these <a href="http://imgur.com/XXX">nudes</a>.<br>
</body>
</html>

----==_mimepart_53b3322c328c6_f06ecaff42204a--
34 changes: 34 additions & 0 deletions spec/email/multipart_email_template.eml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
Date: Tue, 01 Jul 2014 14:50:15 -0700
Message-ID: <53b32d17e1a53_f06ecaff421598@tank.lab.mail>
To: {{ to.name }} <{{ to.address }}>
From: {{ from.name }} <{{ from.address }}>
Subject: Hello, {{ to.name }}
Mime-Version: 1.0
Content-Type: multipart/alternative;
boundary="--==_mimepart_53b3322c328c6_f06ecaff42204a";
charset=UTF-8
Content-Transfer-Encoding: 7bit


----==_mimepart_53b3322c328c6_f06ecaff42204a
Content-Type: text/plain;
charset=UTF-8
Content-Transfer-Encoding: 7bit
Checkout these nudes ({% link %}).
----==_mimepart_53b3322c328c6_f06ecaff42204a
Content-Type: text/html;
charset=UTF-8
Content-Transfer-Encoding: 7bit

<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>test email</title>
</head>
<body text="#000000" bgcolor="#FFFFFF">
Checkout these <a href="{% link %}">nudes</a>.<br>
</body>
</html>

----==_mimepart_53b3322c328c6_f06ecaff42204a--
19 changes: 19 additions & 0 deletions spec/email/quoted_printable_email.eml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Date: Tue, 01 Jul 2014 14:21:08 -0700
From: Hal Brodigan <hal@trailofbits.com>
To: Dan Guido <dan@trailofbits.com>
Message-ID: <53b32644bd0dd_b221112ff0516b4@tank.lab.mail>
Subject: Hello, Dan Guido
Mime-Version: 1.0
Content-Type: text/html;
charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<html>
<head>
<meta http-equiv=3D"content-type" content=3D"text/html; charset=3DUTF-8">
<title>test email</title>
</head>
<body text=3D"#000000" bgcolor=3D"#FFFFFF">
Checkout these <a href=3D"http://imgur.com/XXX">nudes</a>.<br>
</body>
</html>

0 comments on commit 177f68e

Please sign in to comment.