mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 08:24:54 +00:00
13 lines
240 B
PHP
13 lines
240 B
PHP
|
<?php return [
|
||
|
'mime' => "text/html",
|
||
|
'content' => <<<MESSAGE_BODY
|
||
|
<html>
|
||
|
<title>Example article</title>
|
||
|
<body>
|
||
|
<article>
|
||
|
<p>Partial content, followed by more content</p>
|
||
|
</article>
|
||
|
</body>
|
||
|
</html>
|
||
|
MESSAGE_BODY
|
||
|
];
|