--- /dev/null
+<html>
+<body>
+<div style="text-align: center;">
+<a href="{link}{/link}">
+{if $__wcf->getStyleHandler()->getStyle()->getPageLogo()}<img src="{$__wcf->getStyleHandler()->getStyle()->getPageLogo()}" alt="">{/if}
+{event name='headerLogo'}
+</a>
+</div>
+<div class="content">{$content}</div>
+{hascontent}
+<div class="signature" style="color: grey; font-size: 10px;">
+-- <br>
+{content}
+{@MAIL_SIGNATURE|language}
+{if $mailbox|is_a:'wcf\system\email\UserMailbox'}
+{if MAIL_SIGNATURE|language}<br><br>{/if}
+This email was sent to you, because you registered on the {$mailbox->getUser()->registrationDate|plainTime} at {@PAGE_TITLE|language}.{/if} {* TODO: language item *}
+{/content}
+</div>
+{/hascontent}
+</body>
+</html>
--- /dev/null
+<?php
+namespace wcf\system\email\mime;
+use wcf\system\email\UserMailbox;
+use wcf\system\WCF;
+
+/**
+ * HtmlTextMimePart is a text/html implementation of an
+ * AbstractRecipientAwareTextMimePart.
+ *
+ * @author Tim Duesterhus
+ * @copyright 2001-2015 WoltLab GmbH
+ * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @package com.woltlab.wcf
+ * @subpackage system.email.mime
+ * @category Community Framework
+ */
+class HtmlTextMimePart extends AbstractRecipientAwareTextMimePart {
+ /**
+ * template to use for this email
+ * @var string
+ */
+ protected $template = 'emailTextHtml';
+
+ /**
+ * Creates a new HtmlTextMimePart.
+ *
+ * @param string $content Content of this text part.
+ */
+ public function __construct($content) {
+ parent::__construct($content, 'text/html');
+ }
+}