]> git.ipfire.org Git - thirdparty/rspamd.git/commitdiff
[Minor] Forgotten file
authorVsevolod Stakhov <vsevolod@rspamd.com>
Sat, 4 Oct 2025 21:44:04 +0000 (22:44 +0100)
committerVsevolod Stakhov <vsevolod@rspamd.com>
Sat, 4 Oct 2025 21:44:04 +0000 (22:44 +0100)
test/functional/messages/html_template_1_fuzzy.eml [new file with mode: 0644]

diff --git a/test/functional/messages/html_template_1_fuzzy.eml b/test/functional/messages/html_template_1_fuzzy.eml
new file mode 100644 (file)
index 0000000..9b3cb35
--- /dev/null
@@ -0,0 +1,34 @@
+From: notification@example.com
+To: user@test.com
+Subject: Your weekly newsletter
+Content-Type: text/html; charset=utf-8
+
+<!DOCTYPE html>
+<html>
+<head>
+  <title>Newsletter</title>
+</head>
+<body>
+  <div class="header">
+    <a href="https://example.com"><img src="https://cdn.example.com/logo.png" alt="Logo"/></a>
+  </div>
+  <div class="content">
+    <h1>Weekly Newsletter</h1>
+    <p>Here are your top stories this week</p>
+    <div class="spacer"></div>
+    <div class="article">
+      <h2>Article Title</h2>
+      <p>Article content goes here with some text</p>
+      <p>Extra paragraph added here</p>
+      <a class="button primary" href="https://example.com/article">Read More</a>
+    </div>
+    <div class="article">
+      <h2>Another Article</h2>
+      <p>More content</p>
+    </div>
+  </div>
+  <div class="footer">
+    <p>Unsubscribe: <a href="https://example.com/unsubscribe">click here</a></p>
+  </div>
+</body>
+</html>