mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:49:14 +08:00
2fc70c5572
This allows text editors to use correct syntax coloring for the heredoc sections. Heredoc tag names we use: languages: SQL, JS, RUBY, LUA, HTML, CSS, SCSS, SH, HBS, XML, YAML/YML, MF, ICS other: MD, TEXT/TXT, RAW, EMAIL
25 lines
599 B
Ruby
25 lines
599 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:incoming_email) do
|
|
message_id "12345@example.com"
|
|
subject "Hello world"
|
|
from_address "foo@example.com"
|
|
to_addresses "someone@else.com"
|
|
imap_sync false
|
|
created_via 0
|
|
|
|
raw <<~EMAIL
|
|
Return-Path: <foo@example.com>
|
|
From: Foo <foo@example.com>
|
|
To: someone@else.com
|
|
Subject: Hello world
|
|
Date: Fri, 15 Jan 2016 00:12:43 +0100
|
|
Message-ID: <12345@example.com>
|
|
Mime-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: quoted-printable
|
|
|
|
The body contains "Hello world" too.
|
|
EMAIL
|
|
end
|